我的目标是接收特定帐户的位置。
我知道遵循所有说明:
1) 我在 php API Samples中下载并安装了谷歌客户端
2) 我从这里下载并安装了 MyBusiness.php Business Samples
3)我在开发者控制台(https://console.developers.google.com)中创建了项目
4) 我请求访问 Google My Business 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();
我该如何解决?
我错过了什么?