Setting Up Cloud Connect for RFID
25
Local HTTP/HTTPS Post Server
In a local or Hybrid deployment, the Data interface can be configured to send tag data to a HTTP/HTTPS
server via HTTP POST requests. When configured in this mode the configuration object for Data interface
is shown below.
HTTP Post Server with No Authentication
"data": {
"event":{
"connections":[
{
"type":"httpPost",
"options":{
"URL":"http://10.104.246.243:8080",
"security":{
"verifyPeer":false,
"verifyHost":false,
"authenticationType":"NONE"
}
}
}
]
}
}
HTTPS Post Server with Basic Authentication
"data": {
"event":{
"connections":[
{
"type":"httpPost",
"options":{
"URL":"http://10.17.130.220:8080",
"security":{
"verifyPeer":false,
"verifyHost":false,
"authenticationType":"BASIC",
"authenticationOptions":{
"username":"admin",
"password":"secret"
}
}
}
}
]
}
}