This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
wiki:remote_http [2020/02/21 16:53] ghi |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Remote HTTP ====== | ||
- | ===== Introduction ===== | ||
- | An HTTP client is installed on the gateway. It can be used to send frames from end-devices in real-time (packets are sent as soon as they are received). | ||
- | |||
- | Its configuration is available in the //Remote HTTP REST// tab under the //Services// menu. | ||
- | |||
- | {{ :images:rhttp_config.png?400 |}} | ||
- | |||
- | All data transmitted between client and server are encoded in JSON format. | ||
- | |||
- | If transmission fails, frames not sent are stored to be sent later on. The 100 most recent frames are saved in RAM, the other ones are discarded. Frames are deleted from the RAM once successfully transmitted. | ||
- | |||
- | ===== Remote HTTP connection ===== | ||
- | Enable the feature and complete the configuration fields. | ||
- | |||
- | * ''Host'': Hostname or IP address. | ||
- | * ''Port'': Port. | ||
- | * ''Path'': Destination directory. | ||
- | |||
- | <note important> | ||
- | ''rx_data'' suffix is no more added in URL since version 2.2. You have add it in path if used in your HTTP server configuration. | ||
- | </note> | ||
- | |||
- | The examples featured in this guide use the program ncat to simulate an HTTP server. \\ | ||
- | For testing purposes, you could also use mockable.io. | ||
- | |||
- | ===== Receive data ===== | ||
- | |||
- | The gateway will send a POST requests when it receives frames from an end-device. The body of this request will contain the data of the received frames as a JSON string. | ||
- | |||
- | The HTTP headers indicate: | ||
- | * The ''Content-Type'' is set to ''application/json'', meaning that the body of the HTTP ''POST'' contains a JSON string. | ||
- | * The ''Accept'' is also set to ''application/json'', meaning that the server can reply with a JSON string. | ||
- | |||
- | The HTTP body contains an ''rx_data'' JSON object. | ||
- | |||
- | === RX packets structure === | ||
- | |||
- | Here is the structure of an RX packet sent over HTTP: | ||
- | |||
- | * ''rx_data_id'': integer. RX data unique identifier. | ||
- | * ''end_device_id'': string. The mote EUI or DevAddr depending on the activation procedure. | ||
- | * ''received_time'': integer. Unix timestamp. | ||
- | * ''sequence_number'': integer. Sequence number sent by the mote. | ||
- | * ''port'': integer. LoRaWAN port to be used. | ||
- | * ''radio_id'': integer. Radio identifier (range [0;1]). | ||
- | * ''channel'': integer. Channel identifier (range [0;9]). | ||
- | * ''rssi_dbm'': integer. RSSI in dBm. | ||
- | * ''snr_db'': float. LoRa SNR ratio in dB. | ||
- | * ''frequency_hz'': integer. TX central frequency in Hz. | ||
- | * ''modulation_type'': string. Modulation type, either ''LoRa'' or ''FSK''. | ||
- | * ''data_rate'': string. Data rate. \\ -> if the modulation is ''LoRa'', ''datr'' is ''SFxBWy'' where ''x'' represents the spreading. factor (range 7-12 inclusive), and ''y'' is the bandwidth in kHz \\ -> if the modulation is ''FSK'', ''datr'' is the FSK bit rate in bps. | ||
- | * ''coding_rate'': string. ECC coding rate. Example: ''4/5''. | ||
- | * ''adr'': boolean. Adaptative Data rate enable. | ||
- | * ''payload'': string. Base64-encoded payload data. | ||
- | |||
- | === Example === | ||
- | |||
- | Here is an example of one RX packet sent by the SPN gateway.''ncat'', ''awk'' and ''jq'' are used to illustrate this example: | ||
- | |||
- | <code> | ||
- | ncat -lp 12345 | awk '/^\r$/ { body=NR } body && NR > body { print $0 }' | jq -r . | ||
- | </code> | ||
- | |||
- | * Launches ''ncat'' to listen on the TCP port 12345. | ||
- | * The ''awk'' script discards the HTTP headers and prints the HTTP body. | ||
- | * ''jq'' will prettyprint the JSON string on the console. | ||
- | |||
- | Output: | ||
- | |||
- | <code> | ||
- | $ ncat -lp 8000 | awk '/^\r$/ { body=NR } body && NR > body { print $0 }' | jq -r . | ||
- | { | ||
- | "rx_data": { | ||
- | "rxdata_id": 77, | ||
- | "end_device_id": "0018B20000000BAA", | ||
- | "received_time": 1510669226, | ||
- | "sequence_number": 1, | ||
- | "port": 1, | ||
- | "radio_id": 0, | ||
- | "channel": 1, | ||
- | "rssi_dbm": -45, | ||
- | "snr_db": 9.2, | ||
- | "frequency_hz": 868300000, | ||
- | "modulation_type": "LORA", | ||
- | "data_rate": "SF12BW125", | ||
- | "coding_rate": "4/5", | ||
- | "adr": 1, | ||
- | "payload": "nhxICQcQABNRUSYAAA53" | ||
- | } | ||
- | } | ||
- | </code> |