Vikas S
Vikas S

Reputation: 21

How to avoid security assessment for Gmail API integration

I am fetching Gmail inbox to the web application by using Gmail API. I am using RestAPI to connect with the web application. Everything is working and ready to go live. But the app is rejected by Google and asks for a Security assessment which has around $75K expenses.

As we are only reading messages through API and users are also already permitted to perform the same activity.

My question is, How to avoid Security assessment as we are using restricted and sensitive scope like GMAIL API & PubSub. But without these scopes, we can't fetch the messages.

How to avoid Security assessment? Is there any other way to achieve this requirement?

Looking forward to the community help. It's a major blocker for us to go live. Thanks in advance.

Upvotes: 2

Views: 1879

Answers (1)

Linda Lawton - DaImTo
Linda Lawton - DaImTo

Reputation: 117301

If you need to use a sensitive or restricted scope, and you are not exempt from verification.

There is no work around to the security assessment.

info from docs.

sensitive-scopes

Apps that request sensitive scopes must verify that they follow Google’s API Services User Data Policy and will not have to undergo an independent, third-party security assessment. This sensitive scopes verification process typically takes 3-5 business days to complete.

Option: don't request a sensitive scope.

restricted-scopes

Apps that request restricted scopes must also verify that they follow Google’s API Services User Data Policy, but they must also meet the Additional Requirements for Specific Scopes. One of these additional requirements is an independent, third-party security assessment. For this reason, this restricted scopes verification process can potentially take several weeks to complete.

Option: Dont request a restricted scope.

Exceptions to verification requirements

Could your app be exempt from the verification requirements.

enter image description here

Upvotes: 3

Related Questions