Context Broker with Context Provider
Queries (e.g. GET /v2/entities?q=temperature>40
) from the ContextConsumers aren't sent to the ContextProvider: https://github.com/telefonicaid/fiware-orion/issues/2282
I am examining the following alternative:
POST /v2/registrations
contains the lines below: "provider": {
"http": {
"url": "URL of the web app"
}
}
GET /v2/entities
from a ContextConsumer includes query information if the ContextConsumer wants a filtered response.Could anyone let me know if any request headers are forwarded to a ContextProvider by a ContextBroker?
I'd say that the request headers that are being forwarded are:
For more detail, I'd recommend to have a look to the httpSendRequest()
function implementation in the Orion Context Broker code.