0

I'm making a POST call to the Back End, the Back End return me the cookie and inside the Network tab, I click on the request and see the status code is 200 OK and in the cookies subtab(inside the Network tab) I see that the Response Cookies has a value with the same domain, how can I read the value of the cookie('PROV') ??

t

Fernando
  • 25
  • 5

1 Answers1

0

You can use cookies-js from npm. I don't know what kind of application do you have, but this module is pretty straightforward, I think that you can use Cookies.get('PROV')

Read more here: https://www.npmjs.com/package/cookies-js

andreighe
  • 181
  • 8