我正在将Google Adwords API v201702用于php客户端库和try to accessing an API on behalf of clients

我已经使用以下代码成功创建了$ oauth2数据

use Google\Auth\OAuth2;

session_start();

$oauth2 = new OAuth2([
    'authorizationUri' => 'https://accounts.google.com/o/oauth2/v2/auth',
    'tokenCredentialUri' => 'https://www.googleapis.com/oauth2/v4/token',
    'redirectUri' => '****',
    'clientId' => '****',
    'clientSecret' => '****',
    'scope' => 'https://www.googleapis.com/auth/adwords'
]);


我的问题是当我将数组传递到作用域结果页面时变为空白,请帮助我如何将数组传递给google adwords php客户端lib的作用域,以获取所有CustomerServices数据。
另请描述Google Adwords API v201702中使用AccessToken获取clientCustomerId的方法。

谢谢大家

最佳答案

您可以这样添加数组:

   'scope' => array('https://www.googleapis.com/auth/adwords','https://www.googleapis.com/auth/userinfo.profile')

关于php - Google AdWords PHP客户端库v201702,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43799264/

10-09 01:21