Hi - am looking for some advice around processing and setting cookie headers in a request.
I receive back a cookie field as per below:
Cookie-Origin: WHATEVER.URL.COM|443|true
Set-Cookie: tr_session=a9c5ac94-8ac0-4bbc-ac0f-69fd4ec040fe; secure; httponly
My node is failing due to not setting a cookie i think (as the request works in postman). So I planned to set the following:
Set-Cookie= {{^CookiesOutputField^}}
It fails with the below:
The input index '0' specified as the default index does not exist. There are only 0 inputs.
Error code: brain.node.evaluation.property.fieldResolutionError
Raised on 2019-01-09 at 16:57:44
Java details:
com.lavastorm.brain.node.http.HttpNodeNew
(HttpNodeNew.java@416)
I have also tried to hardcode the cookie into the request but get the following:
Unexpected exception in processing.
Error code:
Raised on 2019-01-09 at 16:59:24
Java details:
com.lavastorm.brain.node.http.HttpNodeNew
(HttpNodeNew.java@502)
any help appreciated
thanks
Martin