Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 380 Bytes

README.md

File metadata and controls

18 lines (16 loc) · 380 Bytes

Twittius

Codius contract that tweets when paid.

$ export TWITTIUS_PORT=8080
$ export TWITTIUS_CREDENTIALS='
  {
    "consumer_key": "...",
    "consumer_secret": "...",
    "access_token": "...",
    "access_token_secret": "...",
    "timeout_ms": 60000 
  }'
$ node index.js &
$ ilp-curl -X POST localhost:8080/tweet --json -F status="Hello world"
{"success":true}