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 ,更具体地说这个这个

于 2012-07-26T00:51:03.170 回答