How to save cookies with type httponly?
-
When the url is opened, cookies are set, as well as with the httponly type. Is it possible to save the set cookies during redirects?
-
Can you explain more or at least illustrate?
-
@Fairy I get to the page http: // localhost / home /
here I put cookies to the visitor Set-Cookie: ... with the prefix HttpOnly, then I want to make a second request to http: // localhost / products /
but at the same time save the cookies that were received in the 1st request.
But openbullet only stores cookies that were delivered without the httponly prefix
-
You can parse the received cookies using the parse block and use them as a set variable in any other request blocks you want.