用于PHP的Google API客户端库无效密钥

时间:2016-11-30 08:21:45

标签: php google-app-engine google-cloud-storage google-api-php-client

我正在尝试使用api访问存储桶,其代码如下:

$client = new Google_Client();
$client->setApplicationName("JJJJ-app-143412");
$client->setDeveloperKey("JJJJ-83a8528076ce.json");

$storage = new Google_Service_Storage($client);

在上面的代码中" JJJJ-83a8528076ce.json"是我在创建服务帐户时下载的文件和#34; JJJJ-app-143412"是应用程序名称。

但是当我尝试执行此代码时,会抛出以下错误:

{ "error": { "errors": [ { "domain": "usageLimits", "reason": "keyInvalid", "message": "Bad Request" } ], "code": 400, "message": "Bad Request" } }

我认为正在设置的API密钥不正确。谁能让我知道在setDeveloperKey()方法中使用API​​密钥的位置?

由于

0 个答案:

没有答案