Google API client wrapper, focused on the OAuth of Google+ (+ User info) for Kohana 3.3
- Create the folder in
APPPATH/cache
the folderGoogle_Client
and set it writeable - Copy the file
modules/googleapi/config/googleapi.php
toAPPPATH/config/googleapi.php
, and configure your app ID, secrets, developer key, etc. Don't make modifications inside the file undermodules
folder - Add this module to your bootstrap
- On your code, check if your user has already permitted the app, using
GPlus::instance()->getUser()
. - If not, send the user to
GPlus::instance()->client->createAuthUrl()
, preferably in a popup window - The
getUser()
method returns aGoogle_Person
class, that has a lot of info about the user, BUT his email. To get his email, you need to usegetUserinfo()->email
More info about the library and it's capabilities check Google API PHP Client documentation
Check the other libraries with similar "sign in with" for Facebook and Twitter