Many applications need to integrate their application with Google or Outlook calendars. Reasons can be different, such as obtaining free dates for scheduling appointments in CRM or combining several calendars in one application, and others.
Introduction
If you have experience with PHP and Laravel you can easily do it.
This article gives you a basic understanding of how Google API works, useful source code and a step-by-step guide on how to integrate Google calendar into your application and set up synchronization.
Enabling Google API
- Go to the Google API Console.
- Select an existing project from the projects list, or click NEW PROJECT to create a new project.
- Select the newly created project and ENABLE to the Google Calendar API in APIs & Services section.
- Сreate a key pair by clicking Create credentials by type OAuth Client ID.
- Once created, you will receive an Client ID and Client Secret. Save
client_secret_*.json
file, as you will need them later. - Add a test user . Google says
While publishing status is set to "Testing", only test users are able to access the app. Allowed user cap prior to app verification is 100, and is counted over the entire lifetime of the app.
Conclusion
This concludes the first part of our integration. In the next article we will create an application that will authenticate with OAuth 2 and retrieve & sync calendars.
See you soon ..
Top comments (0)