Hi
I’m sending a request from postman to my rest API
in the request header, I’m setting a cookie that holds an access token string and setting it as http-only
From my (very limited) understanding, it looks right …
HttpOnly - If present, the cookie won’t be accessible to the client-side scripts run on the page (for example, with document.cookie in JavaScript). The cookie will only be added to the cookie header in requests that are made. This field does not have an effect on Postman’s behavior.
I could be wrong though as I don’t know that much about cookies.