无法将MyBusiness与google-api-php-client连接

时间:2018-09-14 09:12:49

标签: php api google-my-business-api

我的目标是接收特定帐户的位置。

我知道以下所有说明:

1)我在php中下载并安装了Google客户端 API Samples

2)我从这里下载并安装了MyBusiness.php Business Samples

3)我在开发者控制台(https://console.developers.google.com)中创建了项目

4)我请求访问Google我的商家API,并收到激活确认,并从控制台启用了该API。

5)我按照教程学习了有关可以从中检索信息的帐户的信息

不幸的是,我总是遇到相同的错误,经过数小时的测试我不知道该怎么办: “请求缺少必需的身份验证凭证预期的OAuth 2访问令牌,登录cookie或其他有效的身份验证凭证”

$client = new Google_Client();
$client->setHttpClient($httpClient);
$client->setApplicationName("project_id");
$client->setDeveloperKey('DEVELOPER KEY');
$client->setAuthConfig(plugin_dir_path( __FILE__ ).'oauth.json');
$client->setScopes("https://www.googleapis.com/auth/plus.business.manage");
$service = new Google_Service_Mybusiness($client);
 $accounts = $service->accounts->listAccounts();

我该如何解决?

我想念什么?

0 个答案:

没有答案