curl -H "Content-Type: application/json" -X POST -u yourcallsign:yourpassword -d '{ "rubricName": "rubric", "text": "this is the message" }' http://dapnet.db0sda.ampr.org:8080/news
import requests url = 'http://dapnet.db0sda.ampr.org:8080/news' headers = {'Content-type': 'application/json'} data = '{ "rubricName": "rubric", "text": "this is the message" }' data = data.encode('utf-8') response = requests.post(url, headers=headers, auth=('yourcallsign', 'yourpassword'), data=data) print(response)
$c = REST::Client->new(); $c->setHost("$dapnethost:$dapnetport"); $c->addHeader('Authorization'=>'Basic ' . encode_base64($yourcallsign . ':' . $yourpassword)); $c->POST('/news', '{"rubricName": "rubric", "text": "'.$message.'", "number": '.$pos.'}', {"Content-type"=>'application/json'});
Valid positions are integers as char from 1 to 10
{ "rubricName": "rubric", "text": "this is the message", "number": position }