GSC_Client and oAuth2 access



我正在开始开发一个PHP脚本,该脚本将作为cron作业运行,并通过Google购物API定期更新产品列表。

我下载了适用于PHP的GSC客户端库,并正在尝试通过Google购物API文档来获取令牌。 但是,感觉文档中某处缺少一个关于如何在生成 URL 后实际请求令牌的步骤。

这是我到目前为止的代码:

require ("./lib/shoppingclient/GShoppingContent.php");
const G_MERCHANT_ID     = '**********';
const G_CLIENT_ID       = '**********';
const G_CLIENT_SECRET   = '**********';
$obj_client = new GSC_Client (G_MERCHANT_ID);
// Obtain an OAuth2 token to access the API with
$obj_token  = new GSC_OAuth2Token (G_CLIENT_ID, G_CLIENT_SECRET, USER_AGENT);
$str_url    = $obj_token -> generateAuthorizeUrl ('urn:ietf:wg:oauth:2.0:oob');
echo ($str_url . PHP_EOL);
/* @var $obj_response _GSC_Response */
$obj_response = $obj_token -> makeAuthenticatedRequest (curl_init ($str_url));
echo ($obj_response);

当我从命令行运行上述内容时,我得到:

https://accounts.google.com/o/oauth2/auth?response_type=code&client_id=blah-blah-blah-etc-etc-etc...

<HTML>
<HEAD>
<TITLE>Unauthorized</TITLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000">
<H1>Unauthorized</H1>
<H2>Error 401</H2>
</BODY>
</HTML>
Fatal error: Uncaught exception 'GSC_TokenError' with message 'invalid_request' in /var/samba/GoogleShoppingTest/lib/shoppingclient/GShoppingContent.php on line 624
GSC_TokenError: invalid_request in /var/samba/GoogleShoppingTest/lib/shoppingclient/GShoppingContent.php on line 624
Call Stack:
    0.0002     321888   1. {main}() /var/samba/GoogleShoppingTest/logintest.php:0
    0.0065    1446196   2. GSC_OAuth2Token->makeAuthenticatedRequest() /var/samba/GoogleShoppingTest/logintest.php:19
    0.2797    1446684   3. GSC_OAuth2Token->refresh() /var/samba/GoogleShoppingTest/lib/shoppingclient/GShoppingContent.php:722
    0.3992    1448152   4. GSC_OAuth2Token::raiseFromJson() /var/samba/GoogleShoppingTest/lib/shoppingclient/GShoppingContent.php:565

我相当肯定初始化 CURL 对象应该是不必要的,但我无法弄清楚我如何从生成的 URL 到实际响应进行分析。

如果我访问由generateAuthorizeUrl()生成的URL,我会得到一个带有按钮的页面,要求我授予权限。 如果我这样做,我确实会得到一个页面上有一个令牌,据我所知,它是有效的。

但是,这是针对显然无法要求用户单击按钮并确认他们想要授予权限的 cron 脚本,所以显然我在某个地方偏离了轨道。

有没有人设法让GSC_Client在全自动脚本中使用OAuth? 如果是这样,我在这里做错了什么?

更新:对于此应用程序,我已将 API 类型配置为"已安装的应用程序",这似乎是此应用程序的正确 API 类型。 这意味着我为脚本提供共享密钥,并使用https://localhosturn:ietf:wg:oauth:2.0:oob作为 URL。

更新2:我不认为GSC客户端的支持库支持服务器到服务器方案。 进一步的研究表明,如果我想使用私钥身份验证方法,我需要 Google API 客户端库。

这是我到目前为止设法编写的代码:

require ("./lib/google/oauthclient/Google_Client.php");
require ("./lib/google/shoppingclient/GShoppingContent.php");
const G_MERCHANT_ID     = '********';
const G_CLIENT_ID       = '********';
const G_CLIENT_EMAIL    = '********';
const G_CLIENT_KEY_PATH = '/path/to/the/privatekey.p12';
const G_CLIENT_KEY_PW   = 'notasecret';
$obj_client_auth  = new Google_Client ();
$obj_client_auth -> setApplicationName ('test');
$obj_client_auth -> setClientId (G_CLIENT_ID);
$obj_client_auth -> setAssertionCredentials (new Google_AssertionCredentials (
        G_CLIENT_EMAIL, 
        array (OAUTH_SCOPE), 
        file_get_contents (G_CLIENT_KEY_PATH), 
        G_CLIENT_KEY_PW));
$obj_client_auth -> getAuth () -> refreshTokenWithAssertion ();
// Get a token
$obj_token  = json_decode ($obj_client_auth -> getAccessToken ());
print_r ($obj_token);

当我运行上面的代码时,我得到类似于以下内容的东西作为回报:

stdClass Object
(
    [access_token] => ya29.AHES6ZRJohl2AfbQCKbFxNlagSqLGcjHwiylqASX1ygmwg
    [expires_in] => 3600
    [created] => 1359123809
)

我猜这是一个有效的访问令牌响应。

但是,我还没有弄清楚如何将返回的令牌与GSC_Client库一起使用。 虽然我知道这两个库都来自谷歌,但我得到的明显印象是它们是由不同的团队开发的,他们彼此之间几乎没有关系,最终结果是这些库不是交叉兼容的。 如果有人知道在这里该怎么做,我将不胜感激你的任何建议。

更新 3

我已经设法使用oAuth库实际从Google中提取数据,但它来自用于购物的搜索API。 我需要使用内容 API 对产品列表进行操作才能购物。 似乎没有为oAuth库提供用于执行此操作的类,即使在contrib目录中也是如此!

仅供参考,这是执行搜索 API 请求的代码(减去常量):

$obj_client_auth  = new Google_Client ();
$obj_client_auth -> setApplicationName ('test');
$obj_client_auth -> setClientId (G_CLIENT_ID);
$obj_client_auth -> setAssertionCredentials (new Google_AssertionCredentials (
        G_CLIENT_EMAIL, 
        array (
            //'https://www.googleapis.com/auth/structuredcontent',
            'https://www.googleapis.com/auth/shoppingapi'
            ), 
        file_get_contents (G_CLIENT_KEY_PATH), 
        G_CLIENT_KEY_PW));
$obj_client_api   = new Google_ShoppingService ($obj_client_auth);
$arr_results = $obj_client_api -> products -> listProducts ('public', array (
   'country'   => 'GB',
   'q'         => '"mp3 player" | ipod', 
   'rankBy'    => 'relevancy'
));
print_r ($arr_results);

看起来GSC_client库与其自己的 OAuth2 实现耦合得太紧密,以至于Google_Client库无需进行重大重构工作即可轻松集成到其中。 此外,GSC_Client的 OAuth2 实现与客户端密码概念耦合得太紧密,并且重定向到同意页面,以便我编写一个将Google_Client实现包装为替换的实现。

幸运的是,我们有一个与Google内部开发的API接口的代码库,与其身份验证系统的耦合程度较低。 通过一些工作,可以向其添加新的身份验证模块来包装Google_Client。

但是,对于如何让Google的GSC_Client与Google_Client合作,似乎没有答案,所以我仍在寻找更好的答案。

我知道

这是一个有点老的问题,但我有类似的要求,因为谷歌刚刚杀死了我们用来更新价格和可用性的旧API。

下面的代码对我有用。 它使用服务器-服务器身份验证,因此不需要用户输入。您将需要登录到您的 google api 控制台并设置一个新的服务帐户(或者如果您有一个和 p12 文件,请使用现有的服务帐户),此外您还需要将服务代码的电子邮件地址添加到您的 Google 商家中心作为标准用户 - 好吧,我不确定是否需要它,但我做到了并且它有效:-)

附带说明 - 使用旧的 API,我们使用 MPN 搜索,使用新的 AP

require_once realpath(dirname(__FILE__) . '/src/Google/autoload.php');
require_once realpath(dirname(__FILE__) . '/src/Google/Service/ShoppingContent.php');

$merchantId = '<<MY_MERCHANT_ID>>';
$client_id = '<<MY_GOOGLE_API_SERVICE_ACCOUNT_ID>>';
$client_email = <<MY_GOOGLE_API_SERVICE_ACCOUNT_EMAIL>>';
$scopes = array('https://www.googleapis.com/auth/content');
$private_key = file_get_contents('<<MY_GOOGLE_API_SERVICE_ACCOUNT_P12_FILE>>');
$credentials = new Google_Auth_AssertionCredentials(
    $client_email,
    $scopes,
    $private_key
);
$client = new Google_Client();
$client->setAssertionCredentials($credentials);
$client->setScopes($scopes);
$client->setAccessType("offline");
if ($client->getAuth()->isAccessTokenExpired()) $client->getAuth()->refreshTokenWithAssertion();
if (isset($_SESSION['access_token']) && $_SESSION['access_token']) {
  $client->setAccessToken($_SESSION['access_token']);
} else {
  $authUrl = $client->createAuthUrl();
}
$service = new Google_Service_ShoppingContent($client);
//Example to get sku information
$ret = getsku($client, $service, $merchantId, 'DC35DS');
echo "<pre>"; print_r($ret); echo "</pre>";
//Example to set price and availability
$ret = update_Price_Availability($client, $service, $merchantId, $itemid, $price, $availability);
echo "<pre>"; print_r($ret); echo "</pre>";

function update_Price_Availability($client, $service, $merchantId, $itemid, $newprice = null, $availability = null) {
    $inventory = new Google_Service_ShoppingContent_InventorySetRequest();
    $price = new Google_Service_ShoppingContent_Price();
    $ctrl = 0;
    if ($newprice !== null) {
        $price->setValue($newprice);
        $price->setCurrency('GBP');
        $inventory->setPrice($price);
        $ctrl = 1;
    }
    if ($availability !== null) {
        $inventory->setAvailability($availability);
        $ctrl = 1;
    } 
    if ($ctrl == 0) {
        return array('Errors'=>array('Nothing to do')); 
    }
    try {
        $return = $service->inventory->set($merchantId, 'online', 'online:en:GB:'.$itemid, $inventory);
    } catch (Google_Service_Exception  $e) {
        return array('Errors'=>$e->geterrors(),'Message'=>$e->getmessage());
    }
    return getsku($client, $service, $merchantId, $itemid);
 }
function getsku($client, $service, $merchantId, $itemid) {
    try {
        $product = $service->products->get($merchantId, 'online:en:GB:'.$itemid);
    } catch (Google_Service_Exception  $e) {
        $product = array('Errors'=>$e->geterrors(),'Message'=>$e->getmessage());
    }
    return $product;
}

相关内容

  • 没有找到相关文章

最新更新