Reputation: 111
I recently upgraded a RN app to 44, and have since lost the ability for cookies sent back from fetch requests to be sent on subsequent requests.
The only change was adding a Google Signin flow, but wouldn't expect that to break the cookie functionality.
Is there an easy way to figure out why my server gets no cookies from requests?
This is just an iOS testing app; if there is anything else I can help provide happy to do so!
Upvotes: 3
Views: 767
Reputation: 111
Looks like fetch is now the whatwg-fetch; looking through it now requires credentials: 'include'
as part of options for cookies to work.
Upvotes: 6