What’s the best way to extract unknown cookies form response and pass them on to the next request?
I can do it easily when I know the names of cookies, but I need to be able to do it for dynamically generated cookie names.
For example, response will have:
set-cookie:d9847d_Cluster1=C1894.d9847
I can see it in Postman’s cookies and in responseCookies array:
Array:[]
0:{}
name:“d9847d_Cluster1”
value:“C1894.d9847”
Then next request should have header d9847d_Cluster1=C1894.d9847
UPDATE: as it turns out, Postman does it automatically, so I am fine. However, I would still like to know how to do it manually.