Predrag Petrovic
Predrag Petrovic

Reputation: 17

Problems with verifying .NET app that uses Gmail

I've created an console app that reads my Gmail inbox one time in every hour, that app is deployed to Azure and is running as a WebJob.

Got an email from Google about not having Contest Screen. Google wants me to enter 'Application Homepage link', but there isn't any, since it is not a web site.

Any idea how to solve this?

Upvotes: 0

Views: 51

Answers (1)

Linda Lawton - DaImTo
Linda Lawton - DaImTo

Reputation: 116868

If your app is only for your organization or G Suite domain, you can mark it as internal-only in the OAuth consent screen configuration:

  1. Go to the GCP Console OAuth consent screen page.
  2. Click the Project selector drop-down at the top of the page.
  3. On the Select from dialog that appears, select your project.
  4. Under Application type, select Internal, and then click Save.

If the above does not apply to you then. Unfortunately the only way to solve it is to put up a page that they ask for. I recommend finding some kind of free hosting page. Azure and Google both offer free hosting of web sties i believe. As mentioned pages.github.com could also be an option.

Upvotes: 1

Related Questions