首页 > 解决方案 > react-google-login 在 react-web-view 上没有工作

问题描述

我在网络视图中使用谷歌登录时遇到问题反应本机但它在网站上工作

<WebView
userAgent="Chrome/56.0.0.0 Mobile" 
ref={this.WEBVIEW_REF}
onNavigationStateChange={this.onNavigationStateChange.bind(this)}
  source={{
    uri: 'https://siteweb.com'
  }}
  style={{ marginTop: 15 }}
  onLoad={() => this.hideSpinner()}
  onError={()=>alert("Something went wrong !! ( check your netinfo )")}
/>

尝试像其他人所说的那样添加 userAgent 但它仍然无法正常工作......

标签: reactjsreact-nativewebviewgoogle-authentication

解决方案


推荐阅读