Skip to content

Instantly share code, notes, and snippets.

@m4tlch
Forked from lorisleiva/GoogleApiAccess.md
Created December 26, 2021 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save m4tlch/9dd09240f377affd96b2b4b797566511 to your computer and use it in GitHub Desktop.
Save m4tlch/9dd09240f377affd96b2b4b797566511 to your computer and use it in GitHub Desktop.
This gist describes two processes allowing us to access the Google API and to register some webhooks

Access Google API credentials and domain verification

This gist describes two processes allowing us to access the Google API and to register some webhooks. At the end of both processes we will obtain all variable needed to start using their API and we will have whitelisted all necessary URL to get started. We will be using the Google Calendar API and the Google Plus API to access the email address of the user.

This gist has been created as an Appendix to this article (part 1) and this article (part 3).

Note that, I will be using a randomly generated ngrok domain during this presentation. Simply replace b3093b51.ngrok.io with your domain name


part 1 - google verif


Create a project

⚡ Start by accessing the Google developers console here and create a new project if you don't already have one.

screen shot 2018-08-16 at 23 47 51

screen shot 2018-08-16 at 23 47 25

Enable the Google Calendar API

Now, within that project, you will need to enable APIs and services.

screen shot 2018-08-16 at 23 54 02

This will take your to their API Library. Simply search for "Calendar" and choose the Google Calendar API.

screen shot 2018-08-16 at 23 54 52

screen shot 2018-08-16 at 23 55 10

Create your API credentials

Whilst we've enable the Google Calendar API, we now need to obtain a client ID and a client secret to add to our application.

screen shot 2018-08-16 at 23 55 39

The important thing here is to ask for user data since we will be asking our user to connect to their Google Account through OAuth authentication.

screen shot 2018-08-16 at 23 56 27

Now we need to give the name of our application but most importantly, we need to whitelist the redirect URI that we want the user to be redirected to after the OAuth process.

screen shot 2018-08-17 at 00 14 31

In my case, I'm simply going to run valet share to get a random ngrok URL. Note that, if you sign up for a free account, you will not be automatically disconnected after a few hours (which can be handy if you do not want to go through this process every day).

screen shot 2018-08-17 at 00 20 47 2

Needless to say, if you are using the Google API on a live server, use its real domain instead.

Now that we have our domain, we just need to decide the route that we will use for our OAuth callback. In the blog article, we will be using /oauth/google. Therefore the full URL is https://b3093b51.ngrok.io/oauth/google.

screen shot 2018-08-17 at 00 28 27

Enter the name of your app as it will appear on the OAuth screen and play with the customization settings (you can always change them later).

screen shot 2018-08-17 at 00 29 03

Ignore and click Done.

screen shot 2018-08-17 at 00 29 36

Click on you app name.

screen shot 2018-08-17 at 00 29 54

And TADA 🎉, here are your GOOGLE_CLIENT_ID and GOOGLE_CLIENT_SECRET environment variables.

As you can see we've also successfully whitelisted our GOOGLE_REDIRECT_URI environment variables which, in our case, is https://b3093b51.ngrok.io/oauth/google. You can always come back to this page later to update the redirect URI in case your domain name changes.

screen shot 2018-08-17 at 00 30 04

Enable the Google Plus API

Don't worry, you can keep the same credentials for multiple APIs. We just need to tell Google that we also went to access to the Google Plus API (in order to get the user's email address).

In the search box, enter and choose "Google+ API".

screen shot 2018-08-17 at 00 46 45

Click Enable. And that's it 🍺.

screen shot 2018-08-17 at 00 47 01


Domain verification

An extra step to take when we want to receive notifications from Google via webhooks is to verify that you are the owner of your domain. This is simply done by uploading an HTML page into your application so that Google can check if it can reach it.

Start by heading to the Credentials page.

screen shot 2018-08-17 at 00 55 26

Click on the Domain verification tab.

screen shot 2018-08-17 at 00 56 00

screen shot 2018-08-17 at 00 56 33

Enter your full domain name. Note that you need to use the secure version of your URL, i.e. https://, for Google to send you webhook notifications.

screen shot 2018-08-17 at 00 57 03

screen shot 2018-08-17 at 00 57 18

It's not very intuitive but yes, the domain verification itself is done an other website. Simply click Add property and enter your domain's URL again (with https).

screen shot 2018-08-17 at 00 58 05

Now download the HTML file provided by Google and add it add the root of your public/ folder in a Laravel application. If you are using ngrok locally it will be live immediately, otherwise you will need to deploy this file onto your server.

screen shot 2018-08-17 at 00 58 20

When its done, click Verify.

screen shot 2018-08-17 at 01 03 42

Now close this tab and come back to the Google developers console.

screen shot 2018-08-17 at 01 15 25

You should see the same form as earlier. Basically, now that we've added our domain on the other website, it should now work on here too. 🙄

screen shot 2018-08-17 at 01 15 51

And that's finally it! Your domain has now been verified and any webhooks that belongs to this domain will be accepted by Google.

screen shot 2018-08-17 at 01 16 04

In the case of our article, we will listen for Google notification on the google/webhook route. Therefore, our final environment variable GOOGLE_WEBHOOK_URI is https://b3093b51.ngrok.io/google/webhook.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment