iOS : Google Sigin error, Your app is blocked

时光怂恿深爱的人放手 提交于 2021-02-15 04:57:05

问题


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:

  1. Now go to "Edit App"
  2. Go to "App domain" section
  3. Provide information in "Application home page", "Application privacy policy link" and "Application Terms of Service link".
  4. 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."
  5. 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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!