The best way to show Arecibo is to access a running site, so go to the demo site in another browser window. Login using any Google Account and you will be automatically granted access.
Sample unauthorized error page (403)
Sample application error page (500)
From Python, first install the Python Arecibo library:
pip install arecibo
Then:
from arecibo import post arecibo = post() arecibo.server(url="http://test-areciboapp.appspot.com/v/1/") arecibo.set("account", "w3sdf5qwy45qshtqu46tdtgheq47sert6ew45e4i2w65") arecibo.set("status", "403") arecibo.set("url", "http://www.areciboapp.com/demo") arecibo.send()
From PHP, first grab the PHP library from github:
<?php include("arecibo.php"); $fields = array( "account" => "w3sdf5qwy45qshtqu46tdtgheq47sert6ew45e4i2w65", ); post("http://test-areciboapp.appspot.com/v/1/", $fields) ?>
There's a cron job that comes along every hour and deletes users and errors from the demo server. So please feel free to give the site a try, the data won't stick around.