Skip to content

Latest commit

 

History

History
49 lines (25 loc) · 2.07 KB

1-getting-your-dlient-id-and-secret.md

File metadata and controls

49 lines (25 loc) · 2.07 KB

Laravel & Google Drive Storage

Getting your Client ID and Secret

Log in to your Google Account and go to this website:

https://console.developers.google.com/

Create a Project

Create a new project using the dropdown at the top.

Create a new project

After you enter a name, it takes a few seconds before the project is successfully created on the server.

Enable Drive API

Make sure you have the project selected at the top.

Then go to Library and click on "Drive API" under "G Suite APIs".

Add Drive API

And then Enable it.

Enable Google Drive API

Create Credentials

Go to "Credentials" and click on the tab "OAuth Consent Screen". Fill in a "Product name shown to users" and Save it. Don't worry about the other fields.

Consent Screen

Then go back to Credentials, click the button that says "Create Credentials" and select "OAuth Client ID".

Create Credentials

Choose "Web Application" and give it a name.

Add https://developers.google.com/oauthplayground in "Authorized redirect URIs". You will need to use this in the next step to get your refresh token. Once you have the token, you can remove the URI.

Credentials

Click Create and take note of your Client ID and Client Secret.


Next: Getting your Refresh Token | Back to README