Open
Description
Bug description:
Web view should be rendering a web page that has a cookie authentication. Instead it is rendering sign in page. This is happening on iOS after I upgraded to react native 0.73+. It was working properly before the upgrade. Android is working fine.
I have both thirdPartyCookiesEnabled={true}
and sharedCookiesEnabled={true}
enabled. Also in handleNavigationStateChange
I reset the cookies for iOS:
async function resetCookies() {
const cookies = await CookieManager.getAll(Platform.OS === 'ios');
Object.keys(cookies).forEach(key => {
const cookie = cookies[key];
if (cookie.domain === domain) {
CookieManager.clearByName(url, cookie.name, Platform.OS === 'ios');
}
});
}
I also tried to sync the cookies manually with this in the onLoad
and the onNavigationStateChange
of <WebView />
, but it still didn't work.
const synchronizeCookiesiOS = async () => {
if (Platform.OS === 'ios') {
try {
const allCookies = await CookieManager.getAll(true);
for (const cookieKey of Object.keys(allCookies)) {
const cookie = allCookies[cookieKey];
if (cookie) {
await CookieManager.set('https://' + cookie.domain, cookie);
}
}
} catch (error) {
console.error('Error synchronizing cookies:', error);
}
}
};
Expected behavior:
Web view should render account page, not sign in page
Environment:
- OS: Android, iOS
- OS version: Android 34+, iOS 14+
- react-native version: 0.73.6
- react-native-webview version: 13.8.1
Metadata
Metadata
Assignees
Labels
No labels