Google review process for XOAuth2 protocol app

49 views Asked by At

I want to implement XOAuth2 and publish as external app. My application support POP3 and SMTP protocol with XOAuth2.

The authentication scope need to https://mail.google.com/ because of following document.
https://developers.google.com/gmail/imap/xoauth2-protocol?hl=en

I implemented and submit verification from Google cloud console. But the verify is pending because of scope.

The verification team suggest as following, I need implement following function.

https://mail.google.com/ scope should only be requested if your application needs to immediately and permanently delete threads and messages, bypassing Trash

Or
    
Migrate to Gmail API
    

How to pass the Google Review process?
I cannot migrate to Gmail API because SMTP/POP3 protocol is needed.

I tried to reduce the scope like https://www.googleapis.com/auth/gmail.readonly and https://www.googleapis.com/auth/gmail.send but it failed to connect SMTP/POP3 protocol.
So I need to use https://mail.google.com/ scope and implement "delete threads and messages bypassing trash"

0

There are 0 answers