Google API Client PHP Sample
Google API Client Libraries with Google service samples for PHP, (*1)
, (*2)
INSTALLATION
1. Download the Project
Composer download:, (*3)
composer create-project --prefer-dist yidas/google-api-sample
You could download by git clone or by zip file alternatively., (*4)
2. Google API Credential
In Google API Console, you need to set a credential including pointing web root URL to Authorized redirect URIs likes http://{thisPackage}/www/callback.php
, and then enable APIs such as Google+ API, Calendar API and Drive API in Library., (*5)
Then download the credential JSON file then rename and place it to {thisPackage}/files/client_secret.json
., (*6)
LIBRARIES INCLUSION
GOOGLE SERVICES DEMONSTRATION
ADDITIONS
Guzzle SSL Verify Problem
If you are using Windows as service server, you may deal with SSL certificate problem., (*12)
This problem could be solved by modifing vendor/google/apiclient/src/Google/Client.php
:, (*13)
// For windows PHP cURL
$options['verify'] = false;
This app isn’t verified Problem
Google – OAuth Client Verification, (*14)