- Google Apps for Business linked to Apps Engine account
- Cloud Console -> Registered Apps -> {name} -> Web Application -> OAuth 2.0 ClientID
- Cloud Console -> Admin API (On)
- Google Apps Console -> Security -> API Access (checked)
- " -> " -> 3rd party OAuth -> API Clients ({ClientID}.apps.googleusercontent.com)
- " -> " -> " -> API Scopes (https://www.googleapis.com/auth/admin.directory.user)
Here is what I have so far,
require_once 'google/appengine/api/app_identity/AppIdentityService.php';
use \google\appengine\api\app_identity\AppIdentityService;
function setAuthHeader() {
$access_token =AppIdentityService::getAccessToken("https://www.googleapis.com/auth/admin.directory.user");
return [ sprintf("Authorization: OAuth %s", $access_token["access_token"]) ];
}
$get_contacts_url = "https://www.googleapis.com/admin/directory/v1/users?customer=my_customer";
$headers = implode("\n\r", setAuthHeader());
$opts =
array("http" =>
["http" => ["header" => $headers ]]
);
$context = stream_context_create( $opts );
$response = file_get_contents( $get_contacts_url, false, $context );
print_r ($response);
The "access_token" comes through just fine, but $response returns,
{ "error": { "errors": [ { "domain": "global", "reason": "required", "message": "Login Required", "locationType": "header", "location": "Authorization" } ], "code": 401, "message": "Login Required" } }
On the Users: List example at the bottom of the page, they show the "Get" request as follows,
GET https://www.googleapis.com/admin/directory/v1/users?customer=my_customer&key={YOUR_API_KEY}
What is {YOUR_API_KEY}? I've tried every Cloud Console and Google Apps API with no luck.
I'm I going about this completely wrong, should I be using a completely different approach? I've been struggling with this for over a week and would love any sort of response. Thanks
In short: you are over-simplifying OAuth2.
It's not as easy as sending over a key as a HTTP GET parameter to get the data.
I'm sure that you have read this, but you need to understand the OAuth2 web flow and how a client library can leverage the usage for you. You should be requiring this file in order to use the Directory API.