Hello !
Foe example i have following curl example tht useses token for authentification
curl --header "Authorization: X-Road-ApiKey token=c6804432-37f8-43e3-b3f1-b7bd0b1ac3b0" "https://127.0.0.1:4000/api/v1/member-classes" -k
it works as expected and returns:
["COM","NGO","GOV","NEE"]
I tried implement this curl functionality under red-node environment creating flow using the inject , change and http request node.and two debug nodes for debugging
under the change node i implemented following set rules
msg.method get
msg.headers Authorization: X-Road-ApiKey token=c6804432-37f8-43e3-b3f1-b7bd0b1ac3b0
msg.url https://127.0.0.1:4000/api/v1/member-classes
and under http request
Method -set by msg.method -
URL http://
check the Enable secure (SSL/TLS) and unchecked the check box "Use key and certificates from local "
I connceted the nodes and deployed and runned them
dubug node that was conncted to change object displayed in debug window following:
object
_msgid: "a52fd5f2.3feeb8"
payload: 1623328045476
topic: ""
method: "get"
headers: "Authorization: X-Road-ApiKey token=c6804432-37f8-43e3-b3f1-b7bd0b1ac3b0"
url: < same url as above in change node>
This looked fine but other debug object connected to http request node displyed in debug window
object
_msgid: "a52fd5f2.3feeb8"
payload: object
topic: ""
method: "get"
headers: object
x-road-ui-correlation-id: "8ea4c7d547089572"
x-content-type-options: "nosniff"
x-xss-protection: "1; mode=block"
cache-control: "no-cache, no-store, max-age=0, must-revalidate"
pragma: "no-cache"
expires: "0"
strict-transport-security: "max-age=31536000 ; includeSubDomains"
x-frame-options: "DENY"
content-security-policy: "default-src 'none'"
content-type: "application/json"
transfer-encoding: "chunked"
date: "Thu, 10 Jun 2021 12:27:25 GMT"
connection: "close"
x-node-red-request-node: "383da789"
url: < same url as above in change node>
statusCode: 401
responseUrl: " < same url as above in change node>"
redirectList: array[0]
I looks like something went wrong.
I would be happy if some could help find what is wrong about this node-red flow