是否有访问驱动器的 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,我相信我能处理剩下的事情。