HTTP Client Output
- This method supports sending data 10x a second
- In Scoreboard OCR
- Add Fields
- Choose output type 'HTTP Client'
- Choose output Format, please see below the table
- Enter URL:
https://ip_address/url
http://0.0.0.0/admin/set_variables.cgi
Scoreboard OCR will send the following HTTP/HTTPS requests to the URl that you entered based on choice of Format (user:password authorization can also be used):
Format | Content | Syntax | Example |
---|---|---|---|
GET | URL | http://url?[FieldName]=[Value] | http://url?Score1=10&Time=2:52 |
POST JSON | body | {“FieldName”: “Value”} | {“time”: “3:12”, “score_a”: “56”} |
POST URLENC | body | [FieldName]=[Value] | Score1=10&Time=2:52 |
PUT JSON | body | {“FieldName”: “Value”} | {“time”: “3:12”, “score_a”: “56”} |
PUT URLENC | body | [FieldName]=[Value] | Score1=10&Time=2:52 |