2

我正在尝试从 Google 协作平台帐户(Google 应用程序)读取提要。我不需要我的应用程序要求每个用户登录,所以我在“Google API 控制台”中将我的 ClientID 创建为“服务帐户”。我已将此客户端 ID 和范围 (https://sites.google.com/feeds/) 添加到我的谷歌应用程序控制面板中的“管理 API 客户端访问”页面。

我使用下面的代码进行连接,所有常量都在我的代码中用正确的值定义。

// api dependencies
require_once(GOOGLE_API_PATH);

// create client object and set app name
$client = new Google_Client();
$client->setApplicationName(GOOGLE_API_NAME);

// set assertion credentials
$client->setAssertionCredentials(

new Google_AssertionCredentials(

GOOGLE_API_EMAIL,
array(GOOGLE_API_SCOPE),
file_get_contents(GOOGLE_API_PK) 
));

$client->setClientId(GOOGLE_API_CLIENTID);

// create service

$req = new Google_HttpRequest("https://sites.google.com/feeds/content/<herismydomainname.com>/intranet");
$val = $client->getIo()->authenticatedRequest($req);

// The contacts api only returns XML responses.
$response = json_encode($val->getResponseBody());
print "<pre>" . print_r(json_decode($response, true), true) . "</pre>";

我得到的响应是“未授权访问此提要”当我尝试在 OAuth2.0 操场上使用我的 google 应用程序帐户登录时获取此提要时,我得到了预期的响应。我在这里俯瞰什么?

4

1 回答 1

5

目前不能同时使用服务帐号和 Google 协作平台。Google Apps 提供了一个消费者机密,可用于在 OAuth 1.0a 中以两条腿式 OAuth 的形式访问您的域中的数据。

查看http://support.google.com/a/bin/answer.py?hl=en&answer=162105了解如何配置您的 Apps 帐户,以及https://developers.google.com/gdata/上的示例代码docs/auth/oauth#2LeggedOAuth

于 2012-10-22T22:31:11.480 回答