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.
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/
curl -X GET http://hub.orisi.org/last/?format=json
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
import requests
url = 'http://hub.orisi.org/last?format=json'
r = requests.get(url)
import requests
...
url = 'http://hub.orisi.org/storage' + message.body
r = requests.get(url)