react-native-wkwebview
react-native-wkwebview copied to clipboard
not getting cookies ?
hi, i'm trying to get cookies with CookieManager from 'react-native-cookies' but when
CookieManager.getAll()
.then((res) => {
console.log('CookieManager.get =>', res); // => 'user_session=abcdefg; path=/;'
});
it return empty on simulator resulte, and sendCookies={true}, any help please.
@BlackSword101 any luck resolving this? Does it work on plain RN WebView
?
for the CookieManager there is a solution for this in the master branch that you need to pass true as an arg like
CookieManager.getAll(true).then(....