2

ドライブにアクセスする Chrome 拡張機能の例はありますか?

chrome_ex_oauth.js の使用:

https://docs.google.com/feeds/ドキュメント リスト スコープ ( ) で踊っていますが、https://www.googleapis.com/auth/driveスコープが機能していないようです。コンシューマーキー/シークレットなどを変更しようとしました:

oauth =  ChromeExOAuth.initBackgroundPage({
  'request_url': 'https://www.google.com/accounts/OAuthGetRequestToken',
  'authorize_url': 'https://www.google.com/accounts/OAuthAuthorizeToken',
  'access_url': 'https://www.google.com/accounts/OAuthGetAccessToken',
  'consumer_key': 'anonymous',
  'consumer_secret': 'anonymous',
  'scope':'https://www.googleapis.com/auth/drive',
  'app_name': 'Chrome Extension'
});

oauth.authorize(onAuthorizeCallback); 

あなたが私を oauth を通過させてくれれば、残りは私が処理できると確信しています。

4

1 に答える 1

0

私が理解しているように、これが機能する前に前提条件があります。これを参照してください: https://developers.google.com/drive/get-started#create_a_new_file_from_the_drive_ui、より具体的には thisthis .

于 2012-07-26T00:51:03.170 に答える