Skip to content

Instantly share code, notes, and snippets.

@ianbarber
Created August 10, 2012 10:56
Show Gist options
  • Save ianbarber/3313369 to your computer and use it in GitHub Desktop.
Save ianbarber/3313369 to your computer and use it in GitHub Desktop.
<?php
$client = new Google_Client();
$client->setApplicationName("Oyster+");
$client->setClientId('YOUR_CLIENT_ID_HERE');
$client->setClientSecret('YOUR_CLIENT_SECRET_HERE');
$client->setRedirectUri('http://localhost:8080/oyster');
$client->setDeveloperKey('YOUR_DEVELOPER_KEY');
$client->setScopes(array('https://www.googleapis.com/auth/plus.me', 'https://www.googleapis.com/auth/plus.moments.write'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment