How to Fix the “This App is Blocked” Error in Google OAuth

If you’re working with Google OAuth and suddenly hit a wall with an error saying:

“This app is blocked. This app tried to access sensitive info in your Google Account. To keep your account safe, Google blocked this access.”

Don’t panic!, This is a common issue, especially during development or initial app setup. It’s Google’s way of protecting users when an app hasn’t gone through their full verification process yet.

Let’s walk through why this happens and how to fix it.


:brain: What’s Going On Here?

When you register an app with Google and try to access services like Gmail, Google Drive, or YouTube, you’re requesting what’s called sensitive or restricted scopes. These scopes allow your app to access personal user data, so Google requires some extra steps before granting that access.

If your app is still in testing mode, or it hasn’t been verified by Google, access will be blocked for anyone who isn’t explicitly added as a test user.


:white_check_mark: Steps to Resolve the Error

Here’s a straightforward checklist to get things working again:


1. Register the OAuth App Properly

Start by making sure your app is correctly set up in the Google Cloud Console.

Things to double-check:

  • The redirect URI matches what you’ve configured in your application
  • You’ve added all required OAuth scopes
  • The app is set to the correct publishing status:
    • Use Testing while developing
    • Switch to Production when going live

If you’re unsure about this process, the ZappySys guide is a great resource to walk you through it.


2. Add Test Users (If Still in Testing Mode)

Apps in testing mode are locked down. Only users you manually add can authorize the app.

To do this:

  • Navigate to the OAuth consent screen in the Google Cloud Console
  • Scroll down to Test Users
  • Add the email addresses of everyone who needs access

Yes, even your own email has to be added if it’s not the same as your developer account.


3. Move to Production & Verify Your App

Once you’re ready to make the app available to a wider audience (beyond test users), you’ll need to publish it and go through Google’s verification process.

This usually involves:

  • Switching the app to “In production”
  • Submitting a request for OAuth verification
  • Providing a privacy policy URL
  • Sharing a demo video showing how your app uses the requested scopes
  • Explaining why the requested scopes are needed

Depending on your scopes, the review process can take anywhere from a few days to a couple of weeks.


4. Avoid Restricted Scopes (If Possible)

Not every app needs full Gmail or Drive access. If you can, stick with non-sensitive scopes to avoid the verification process entirely. For example, https://www.googleapis.com/auth/userinfo.email is a common one that’s much easier to use without triggering Google’s stricter policies.


:end: Wrapping Up

Google’s OAuth process can feel a bit strict at first, but it’s there to keep both your users and your app safe. The good news is, once you set everything up the right way, it works smoothly.

If you’re still testing, just make sure to add all your test users. And when you’re ready to go live, be prepared to go through Google’s app verification. It only needs to be done once, and it’s definitely worth the effort.