IMTheNachoMan
IMTheNachoMan

Reputation: 5839

Not getting the "Submit for verification" button for OAuth verification in GCP

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:

  1. Click the Edit App button.
  2. Enter the information required on the configuration page, and then click Submit for verification. If the submit for verification button does not appear at the end of the configuration pages, save what you have completed and repeat steps 1-4.

I have gone through all the steps but the Submit for verification never comes up. I'm not sure what I am doing wrong?

enter image description here

enter image description here

enter image description here

enter image description here

Upvotes: 0

Views: 496

Answers (1)

John Hanley
John Hanley

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.

Verify your site ownership

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

Related Questions