ドライブにアクセスする Chrome 拡張機能の例はありますか?
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 を通過させてくれれば、残りは私が処理できると確信しています。