Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to download credentials.json in Gmail API Enable Java

I am trying to enable Gmail API following steps in Java Quickstart. When I click on "Enable the Gmail API" button in the Google developer console, no option like "Download Client Configuration" is displayed.

So, I am unable to get credentials.json File.

like image 237
Vedha Lakshmi Avatar asked Sep 20 '19 10:09

Vedha Lakshmi


2 Answers

Gmail API credentials are restricted to enhance apps security. To enable the credentials click on API Console after clicking on Enable the Gmail API. You will travel to a filled form on the Credentials menu on Google APIs. You can change there the name and/or restrictions to better suit your project. Finally, you can click on Generate key to finish the process.

If you have followed the steps so far, you would have created the Gmail API credentials. To achieve your request you will need to click on Download JSON button on the right side of your newly created credentials. Do not hesitate to ask for more information if I haven't explained the process with enough detail.

like image 117
Jacques-Guzel Heron Avatar answered Sep 29 '22 17:09

Jacques-Guzel Heron


Just enabling the Gmail api isnt going to create client credential for you. Unfortunately the developer console changes more often then the quick starts get updated so it can be difficult to understand.

Go to the https://console.developers.google.com

Find the credentials tab on the left and click the Create credentials button

enter image description here

You are probably going to be looking for an oauth client id, as service accounts only work with gmail if you are connecting to a gsuite account.

like image 43
DaImTo Avatar answered Sep 29 '22 17:09

DaImTo