PDF ドキュメントを Google クラウド バケットに自動的にアップロードする PHP スクリプトに取り組んでいます。
Google のクラウド ストレージ サービス アカウントを使用しています。
私が得ている結果は次のとおりです: GET https://www.googleapis.com/storage/v1beta1/b/ ..: (403) Access Not Configured の 呼び出しエラー
私が使用している PHP コード (php Google API クライアント ライブラリ) は次のとおりです。
$clientID = 'MY CLIENT ID';
$keyFile = 'PATH\TO\KEYFILE\key.p12';
$key_secret = 'MY KEY SECRET';
$client = new Google_Client();
$client->setClientId($clientID);
$client->setApplicationName("Google Cloud Storage Sample");
$client->setScopes('https://www.googleapis.com/auth/devstorage.full_control');
$key = file_get_contents($keyFile);
$client->setAssertionCredentials(new Google_AssertionCredentials(
'service account name',
array('https://www.googleapis.com/auth/devstorage.full_control'),
$key,$key_secret)
);
$storageService = new Google_StorageService($client);
try
{
$bucket = $storageService->buckets->get('my_bucket');
}
catch (exception $e)
{
print $e->getMessage();
}
Thanks for any support on this one.