Google은 사용자가 내 웹 사이트에서 Google을 사용하여 가입하려고 할 때 위의 3 가지 팝업을 사용자에게 표시하지만 가입하려고 할 때 동일한 팝업이 표시되지 않습니다. 내가 보는 것은 이것입니다-
이 3 개의 별도 팝업으로 인해 내 웹 사이트에서 큰 차이가 발생합니다. 이 3 가지 권한 팝업을 어떻게 제거 할 수 있습니까?
Google 로그인 버튼 세부 정보 -React 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}
/>
답변
타사 Google 앱의 승인 절차가 최근에 사용자가 원하는 권한 만 수락하도록 변경되었습니다. 이런 식으로, 사용자는 응용 프로그램이 자신의 데이터에 대해 갖는 액세스 권한을 더 많이 제어 할 수 있습니다.
현재로서는 이 동작을 변경할 방법이 없으며이 변경 사항 에 대한 공개 문서 / 자료가 없습니다.