Benutzer-Werkzeuge

Webseiten-Werkzeuge


dapnetapisendcall

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Beide Seiten der vorigen Revision Vorhergehende Überarbeitung
Nächste Überarbeitung
Vorhergehende Überarbeitung
dapnetapisendcall [2022/01/30 13:05]
dj7lc Beispiele überarbeitet
dapnetapisendcall [2023/11/12 19:03] (aktuell)
pe2kmv
Zeile 4: Zeile 4:
  
 <​code>​ <​code>​
-curl -H "​Content-Type:​ application/​json"​ -X POST -u yourcallsign:​yourpassword -d '{ "​text":​ "this is the message",​ "​callSignNames":​ ["​destinationcallsign"​],​ "​transmitterGroupNames":​ ["​txgroup"​],​ "​emergency":​ false }' ​URL/calls+curl -H "​Content-Type:​ application/​json"​ -X POST -u yourcallsign:​yourpassword -d '{ "​text":​ "this is the message",​ "​callSignNames":​ ["​destinationcallsign"​],​ "​transmitterGroupNames":​ ["​txgroup"​],​ "​emergency":​ false }' ​http://​dapnet.db0sda.ampr.org:​8080/calls
 </​code>​ </​code>​
  
-===== Example for python ​=====+===== Example for python3 ​=====
  
 <​code>​ <​code>​
 import requests import requests
 +
 +url = '​http://​dapnet.db0sda.ampr.org:​8080/​calls'​
  
 headers = {'​Content-type':​ '​application/​json'​} headers = {'​Content-type':​ '​application/​json'​}
Zeile 18: Zeile 20:
 data = data.encode('​utf-8'​) data = data.encode('​utf-8'​)
  
-response = requests.post('​http://​dapnet.db0sda.ampr.org:​8080/​calls'​, headers=headers,​ auth=('​yourcallsign',​ '​yourpassword'​),​ data=data)+response = requests.post(url, headers=headers,​ auth=('​yourcallsign',​ '​yourpassword'​),​ data=data)
  
 print(response) print(response)
 </​code>​ </​code>​
 +
 +===== make sure to select the correct DAPNET server =====
 +When you are connected to HAMNET (either through the air or via VPN) you can use the HAMNET node http://​www.hampager.de:​8080/​calls
 +
 +If you're not connected to HAMNET please use the server connected to the public internet http://​www.hampager.de:​8080/​calls
 +
 ===== calls to more than one callsign ===== ===== calls to more than one callsign =====
  
-It is also possible to hand over more than one call sign to the API. The call signs then have to be comma separated.+It is also possible to hand over more than one call sign to the API. The call signs then have to be comma separated ​and quoted.
  
 <​code>​ <​code>​
Zeile 34: Zeile 42:
 ===== calls to more than one tx group ===== ===== calls to more than one tx group =====
  
-The tx groups have to be comma separated.+The tx groups have to be comma separated ​and quoted.
  
 <​code>​ <​code>​
 ["​group1",​ "​group2",​ "​group3"​] ["​group1",​ "​group2",​ "​group3"​]
 +</​code>​
 But be aware: If one group is invalid (does not exist, typo), the whole call is discarded. But be aware: If one group is invalid (does not exist, typo), the whole call is discarded.
dapnetapisendcall.1643544357.txt.gz · Zuletzt geändert: 2022/01/30 13:05 von dj7lc