问题
on time of sign-in from google, this error appears
"This app tried to access sensitive info in your Google account. To keep your account safe, google blocked this access"
my code is mention below where i called google SignIn
#pragma mark - Google Drive Login
-(void)googlePlusLogin{
GIDSignIn *signin = [GIDSignIn sharedInstance];
signin.shouldFetchBasicProfile = true;
signin.delegate = self;
signin.presentingViewController = self.window.rootViewController;
//signin.uiDelegate = self;
NSString *driveWrite = @"https://www.googleapis.com/auth/drive";
NSArray *currentScopes = [GIDSignIn sharedInstance].scopes;
// [GIDSignIn sharedInstance].scopes = [currentScopes arrayByAddingObject:driveScope];
[GIDSignIn sharedInstance].scopes = [currentScopes arrayByAddingObject:driveWrite];
[self performSelector:@selector(checkForLoginInGoogle) withObject:nil afterDelay:0.1];
}
-(void)checkForLoginInGoogle{
GIDSignIn *signin = [GIDSignIn sharedInstance];
if ([signin hasPreviousSignIn]) {
[signin restorePreviousSignIn];
}
else{
[signin signIn];
}
}
回答1:
Please go to https://console.developers.google.com and login with your creds.
Now go to APIs & Services -> OAuth consent screen
Now confirm you have selected a correct project the issue is facing for
Check here your user cap limit. If this reached to the higher limit then you have to verify you product with google.
See here:
Now to resolve this:
- Now go to "Edit App"
- Go to "App domain" section
- Provide information in "Application home page", "Application privacy policy link" and "Application Terms of Service link".
- Now add "Authorised Domain" - "After you add an authorised domain, you can use any of its subdomains or pages. If you added Authorised Javascripts Origins and Authorised Redirect URIs when you created your credentials, they will also appear here."
- Follow verification steps form here: https://kinsta.com/blog/google-site-verification/
Once Verification done this issue will get resolved.
Alternatively, You can also create a new Project with same BundleID in the Google Console and create new credentials. By using this credential you will get fresh user cap of 100 users.
Note: Alternative solution is only temporary. Permanent solution is to verify the app with Google.
来源:https://stackoverflow.com/questions/65517464/ios-google-sigin-error-your-app-is-blocked