I use Postman to test and play with the API.
For the login URL, the API requires a POST request with username and password fields as fields. I do this, and I get a 200 response with a message that I am logged in.
Then I will try another query to get user data. However, I get the answer that I have not logged in.
I realized that this problem is most likely due to the fact that the cookie that is sent to me when I log in is not included in the next Postman request.
So my question is: how do I save and enable cookies for future requests?
source share