是否有任何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,我相信我能完成其余的工作。
答案 0 :(得分:0)
据我了解,在此之前有先决条件。请参阅:https://developers.google.com/drive/get-started#create_a_new_file_from_the_drive_ui,更具体地说是this和this。