1

Google ドライブの uri にアクセスする

私は自分のサービスでDrive SDKとDrive APIの両方をオンにしていますhttps://code.google.com/apis/console

それでも取得します:

{
 "error": {
  "errors": [
   {
    "domain": "usageLimits",
    "reason": "accessNotConfigured",
    "message": "Access Not Configured"
   }
  ],
  "code": 403,
  "message": "Access Not Configured"
 }
}

https://developers.google.com/drive/v2/reference/files/get#try-itを介してこれを実行したかのように、正常に動作します!

jsonを正しく返すにはどうすればよいですか?

{
 "selfLink": "https://www.googleapis.com/drive/v2/files/1obpi0bmSDILX1cIQcVRNi1lUkm2K5xBFztmRFiM",
 "modifiedDate": "2012-12-13T20:41:07.602Z",
 "ownerNames": [
  "Norman"
 ],
 "lastModifyingUserName": "Norman"
}
4

1 に答える 1

2

古い API キーを使用していましたが、これが機能するようになりました。

于 2012-12-23T14:49:33.863 に答える