Hello!
I have a custom API that requires setting Cookies in requests to methods.
By example I Login with post operation to URL —> https://server/Login
Response :
{ "odata.metadata" : "https://server/$metadata#B1Sessions/@Element" , "SessionId" : "94b390cc-666b-11f0-c000-005056b5a3f8-140425297418112-35540", "Version" : "1000260", "SessionTimeout" : 30}↵
Then I must use the sessionid as a value in the cookie of the next request to methods, by example via PostMan :
Cookie: B1SESSION=94b390cc-666b-11f0-c000-005056b5a3f8-140425297418112-35540; ROUTEID=.node6
How can I use this type of login in API Gateway? I tried using a Swagger that supports cookie parameters, but it doesn't seem to be sending them correctly.
I was thinking of creating a login flow in ION and then sending that parameter as a header parameter, but it doesn't work.
Thanks!!!