0
我正嘗試使用服務帳戶初始化可恢復的下載到Google雲端存儲。生成的授權令牌有效(我已在https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=進行過驗證),並且應用程序已完全控制。但是,當我嘗試獲取可恢復下載的新URI時,我收到了401錯誤(無效憑證)。我在這裏做錯了什麼?Google雲端存儲:帶有服務帳戶的可恢復下載會拋出HTTP 401
40 $key = file_get_contents(KEY_FILE);
41 $client->setAssertionCredentials(new Google_AssertionCredentials(
42 SERVICE_ACCOUNT_NAME,
43 array('https://www.googleapis.com/auth/devstorage.full_control'),
44 $key)
45);
46
47 $client->setClientId(CLIENT_ID);
48 $service = new Google_StorageService($client);
49 $buckets = $service->buckets;
50 $bucketObj = new Google_Bucket();
51
52 $time = time();
53 $b_name = "test_bucket_"."$time";
54 $bucketObj->setName($b_name);
55 // $response = $buckets->insert('test_project-0001',$bucketObj);
56 $response = $buckets->listBuckets('test_project-0001');
57 $tokenStr = $client->getAccessToken();
58 print "Token String : $tokenStr\n";
59 $token = '';
60 if(preg_match('/access_token\":\"(.*.)\",/', $tokenStr, $matches)) {
61 print "Tken $matches[1] \n";
62 $token = $matches[1];
63 }
64
65
66 $req = new Google_HttpRequest("https://www.googleapis.com/upload/storage/v1beta2/b/test_project-0001_test_bucket_1/o?uploadType=resumable&name=song");
67 $req->setRequestHeaders(array(
68 'Authorization:' => "$token",
69 'X-Upload-Content-Length:' => '4509237'));
74 $req->setRequestMethod('POST');
75 // $req->setPostBody($e_body);
76
77 var_dump($req);
78 $gRest = new Google_REST();
79 $response = $gRest->execute($req);
80 var_dump($response);
81
82 ?>
這給了我下面的輸出 { 「錯誤」:{ 「錯誤」:[{ 「域」: 「全局」, 「理由」: 「authError」, 「消息」 : 「無效憑證」, 「的locationType」: 「首標」, 「位置」: 「授權」 }], 「代碼」:401, 「消息」: 「無效憑證」 } }
任何人都可以給我一些關於我做錯了什麼的指針嗎?