Gricha / fastcast

FastCast rest server, like the one hosted at hub.orisi.org

Home Page:hub.orisi.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FASTCAST

FastCast is a simple broadcast messaging protocol we had to develop for Orisi. Right now it supports a single-server hub, but it should be possible to extend it into a distributed architecture, and to include a proof-of-work or proof-of-burn spam prevention.

FastCast is built as a simple web REST server based on Django Rest Framework. Here you can read how it compares to BitMessage.

You can explore API following e.g. those urls:

The default FASTCAST server is hub.orisi.org. You can install your own using this repo if you like.

Implementations

Bash

Posting new message

echo test > test.json

curl -X POST -S -H 'Accept: application/json' /  -F "source=s12332432" / -F "destination=s12332432" -F "channel=s12332432" -F "signature=signature" -F "body" 127.0.0.1:8000/last/

Getting messages from last 10 minutes

curl -X GET http://hub.orisi.org/last/?format=json

Python

Posting new message

import requests
url = 'http://54.77.58.8/'

payload = {

            "source": "1",
            "destination": "1",
            "channel": "1",
            "signature": "1",
            "body": "1",


}



r = requests.post(url, data=payload)

print r.text

Get messages from last 10 minutes

import requests
url = 'http://hub.orisi.org/last?format=json'
r = requests.get(url)

Get body

import requests

...

url = 'http://hub.orisi.org/storage' + message.body
r = requests.get(url)

About

FastCast rest server, like the one hosted at hub.orisi.org

hub.orisi.org