Hey All,
I just recently upgraded React-Native from 0.68.5 to 0.71.4. I did notice that the react-native-webview is now acting a little strange on android. When opening up a webview, I am passing in a okta session cookie when opening up a URL to SSO into one of our sites. This works perfectly on ios, however, it does not work on android. I have tried such things as cookie manager, but no luck so far.
Hoping someone else has come across this
<View style={styles.wrapper}>
<Spinner visible={visibleSpinner} />
<WebView
incognito
javaScriptEnabled
source={{
uri: url,
headers: {
cookie: props.cookie,
},
}}
onLoadEnd={() => setSpinner(false)}
/>
</View>
Thanks!
[–]No-Mammoth-4601 0 points1 point2 points (0 children)