


当用户试图在我的网站上注册时,Google向他们展示了上面的3个弹出窗口,但当我尝试注册时,它并没有向我显示相同的弹出。我看到的就是-

这三个单独的弹出导致了我的网站的巨大下降。如何删除这3种不同的权限弹出?
Google按钮细节-使用反应谷歌登录
<div className="manager-signup-container">
<div className="content">Join Peoplebox as a Manager to have productive 1:1s that drive actions.</div>
<GoogleLogin
className={`google-btn-${this.state.loginbtnStatus}`}
clientId={GOOGLE_CLIENT_ID}
buttonText="Sign up with Google"
onSuccess={(response) => this.responseOauth(response, "google")}
onFailure={this.responseGoogleFail}
responseType="code"
scope="profile email https://www.googleapis.com/auth/calendar.events https://www.googleapis.com/auth/calendar.readonly"
accessType="offline"
prompt="consent"
disabled={this.state.loginDisabled}
/>发布于 2019-12-18 12:28:36
最近,第三方谷歌应用程序的授权过程发生了变化,允许用户只接受他/她想要的权限。这样,用户就可以更多地控制应用程序对其数据的访问。
目前,没有办法改变这种行为--,也没有任何关于此更改的公开文档/资源。
https://stackoverflow.com/questions/59390001
复制相似问题