Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kadoshita/pushbullet-proxy

PushbulletのWebAPIを叩いてテキストなどを送信するプログラム
https://github.com/kadoshita/pushbullet-proxy

pushbullet

Last synced: 12 days ago
JSON representation

PushbulletのWebAPIを叩いてテキストなどを送信するプログラム

Awesome Lists containing this project

README

        

# pushbullet-proxy

PushbulletのWebAPIを叩いてテキストなどを送信するプログラム

# 使い方
## テキストを送る
```sh
$ curl -X POST -H 'Content-Type:application/json' http://localhost:3000/ -d '{"body":"test text","title":"test"}'
```

## URLを送る
```sh
$ curl -X POST -H 'Content-Type:application/json' http://localhost:3000/ -d '{"url":"http://example.com"}'
```

## ファイルを送る
```sh
$ curl -X POST -F [email protected] http://localhost:3000/file
```