Benutzer-Werkzeuge

Webseiten-Werkzeuge


dapnetapisendrubricl

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Nächste Überarbeitung
Vorhergehende Überarbeitung
dapnetapisendrubricl [2018/03/13 15:06]
dh3wr angelegt
dapnetapisendrubricl [2022/01/30 13:27]
dj7lc
Zeile 1: Zeile 1:
 ====== Send rubric content via REST-API ====== ====== Send rubric content via REST-API ======
  
-Just an example in Perl from https://​github.com/​DecentralizedAmateurPagingNetwork/​DxClusterInterface/​blob/​master/​dxclusterspider_db0sda+===== Example for curl from linux console =====
  
 <​code>​ <​code>​
-$c = REST::Client->​new();​ $c->​setHost("$dapnethost:$dapnetport"); +curl -H "​Content-Typeapplication/​json" ​-X POST -u yourcallsign:​yourpassword -d '{ "​rubricName": "rubric",​ "​text":​ "this is the message"​ }' ​http://​dapnet.db0sda.ampr.org:​8080/​news 
-$c->​addHeader('​Authorization'​=>'​Basic ​' . encode_base64($dapnetuser ​':' ​$dapnetpw));​+</​code>​
  
-$c->​POST('/​news',​ '​{"​rubricName":​ "dx-kwcw", "​text":​ "'​.$nachricht.'",​ "​number":​ '​.$pos.'​}',​ {"​Content-type"​=>'​application/​json'​});​+ 
 +===== Example for python3 ===== 
 + 
 +<​code>​ 
 +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) 
 +</​code>​ 
 + 
 +===== Example for pearl ===== 
 + 
 +<​code>​ 
 +$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'​});​ 
 +</​code>​ 
 + 
 +===== set a specific position for the skyper rubric content ===== 
 + 
 +Valid positions are integers as char from 1 to 10 
 +<​code>​ 
 +{ "​rubricName":​ "​rubric",​ "​text":​ "this is the message",​ "​number":​ position }
 </​code>​ </​code>​
dapnetapisendrubricl.txt · Zuletzt geändert: 2022/01/30 13:27 von dj7lc