Reputation: 5839
I have created a Gmail/Calendar add-on in Google Apps Script and I want to publish it to the marketplace.
I am following the steps at https://developers.google.com/workspace/marketplace/configure-oauth-consent-screen#fill_out_the_oauth_consent_screen. I am on the "Submit for OAuth verification" step which leads to https://support.google.com/cloud/answer/9110914#submit-howto. It says:
I have gone through all the steps but the Submit for verification never comes up. I'm not sure what I am doing wrong?
Upvotes: 0
Views: 496
Reputation: 81454
Your first problem is that you do not have a domain name that you own/control. gmail.com and github.com are not owned by you.
Your second problem is that you are requesting restricted scopes. Google will probably demand a security audit. Sensitive scopes can also trigger an audit.
To verify, create another client and remove the sensitive and restricted scopes and add a domain name that you own/control. To read more about the effect of scopes and possible exceptions:
Sensitive and Restricted Scopes
Upvotes: 2