rahbod / rahbod-google-api
There is no license information available for the latest version (dev-master) of this package.
Google OAuth And Google Calendar Classes for use google api.
dev-master
2017-06-20 11:05 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2025-06-16 19:50:55 UTC
README
Installation & loading
composer require rahbod/rahbod-google-api:dev-master
setup config.json file:
{ "client_id": "", // get from google console "client_secret": "", // get from google console "auth_redirect_uri": "", // redirect url "auth_scopes": [ "https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/drive", . . ], "debug_mode": true }
A Simple Example
<?php require 'vendor/autoload.php'; $services = new GoogleServices(); $calendar = $services->calendar; $drive = $services->drive; ?>