如何开发访问谷歌硬盘的Chrome扩展程序?

时间:2012-07-25 13:36:56

标签: google-chrome-extension google-drive-api

是否有任何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,我相信我能完成其余的工作。

1 个答案:

答案 0 :(得分:0)

据我了解,在此之前有先决条件。请参阅:https://developers.google.com/drive/get-started#create_a_new_file_from_the_drive_ui,更具体地说是thisthis