- Overview
- Transcript
1.2 How to Use the Google Calendar API
In this lesson, we’ll create a simple app that can access the Google Calendar API. After registering the app with Google, we’ll write code to request permission to access a user’s calendar and to add a new event to that calendar.
Code Snippet
Use the following snippet to authorize your app for access to a user’s calendar.
function checkAuth() {
gapi.auth.authorize(
{
'client_id': CLIENT_ID,
'scope': SCOPES,
'immediate': true
}, handleAuthResult);
}
1.How to Use the Google Calendar API2 lessons, 07:57
2 lessons, 07:57
1.1Introduction00:40
1.1
Introduction
00:40
1.2How to Use the Google Calendar API07:17
1.2
How to Use the Google Calendar API
07:17
I'm a longtime Network admin who has finally moved over to coding. Skilled in web development and obsessed with frameworks (Angular, Meteor and Ionic to name a few), I am using my past experience as an instructor to help others learn to use technology.