5

Few of our customers of our app have started seeing this "Remove risky access" warning when they run the Google security checkup? Our app requires access to user's Gmail (Gmail API) and we've implemented all the good practices as mentioned in the official documentation. How do we resolve this?

Google Error

Nands
  • 1,541
  • 2
  • 20
  • 33
  • 3
    Has your app been though the review process? https://support.google.com/code/contact/oauth_app_verification?query=https://www.googleapis.com/auth/contacts.readonly – Linda Lawton - DaImTo Oct 13 '17 at 11:38
  • Thank you! We had missed this. I'm not sure since when did this approval came in picture, it was not there previously. – Nands Oct 16 '17 at 07:50
  • 1
    To check whether it's worked: https://myaccount.google.com/security-checkup/2 – murkle Feb 13 '18 at 09:58

1 Answers1

0

This happens when your app has asked access for a scope (for which it has not been reviewed by google yet) and the user has granted it.

For example the app has only been reviewed for email/profile/openid scope (check here under Scopes for Google APIs section for verified scopes of your app ) but has asked for drive scope as well and let's say user has allowed the access to your app knowingly/unknowingly. In this case user will receive an email from google about removing such risky access.

So it is really important for you as a developer if you don't want people to stay away from your spectacular app, make sure that you only ask for scopes that have been reviewed by google or wait until the desired scopes are reviewed if pending.

Paramvir Singh Karwal
  • 597
  • 1
  • 10
  • 24