Skip to content
This repository has been archived by the owner on Nov 20, 2019. It is now read-only.

Latest commit

 

History

History
59 lines (33 loc) · 2.32 KB

GOOGLE-APP-STEP-BY-STEP-GUIDE.md

File metadata and controls

59 lines (33 loc) · 2.32 KB

1 - Create a project

Open the Google Developer Console: https://console.developers.google.com
click the "Select a project" selector, then click: Create a project google-auth-01-create-a-project

2 - Name your New Project

Give your project a name and then click "Create"

google-auth-02-new-project-name

3 - Enable an API

Now you need to enable an API

google-auth-03-enable-api

4. Find and Enable the Google+ API

The recommended API for Authentication is Google+ ("Plus"):

google-auth-04-scroll-to-find-google api

5. Enable the API

As if you had not clicked enough, you still have to click "Enable API":

google-auth-05-enable-google api

Then click on the "Credentials" link in the left-hand menu.

6. Add Credentials

google-auth-06-credentials

7. OAuth Consent Screen

This is the info that will be displayed for people using your app when you ask them to Authorize your app to use their Google Account:

google-auth-07-credentials

8. Set the Origin & Redirect URIs

This part is important as the redirect URI will need to match what you define in your app's REDIRECT_URL option.

google-auth-08-credentials-define-origins-and-callback

9. Get your Client ID and Secret

Once you have done that you will be shown a modal with your client ID and client secret:

google-auth-09-client-id

Copy the two keys and export them in your project see: Step 3 of the Readme.