3

使用 DocumentsList API,可以授权 DocsService,然后使用 Client Login 方法发出授权请求,即 service.setUserCredential(username,password)。

现在 DocumentsList 和 ClientLogin 都已被弃用,是否有类似的方式来授权 Drive 服务,而不使用令牌和授权请求?否则,如果我的应用程序不需要访问已登录用户的数据,而只需要访问特定帐户的数据(即应用程序本身的帐户),那么将 Drive 服务授权给该特定帐户的最佳方式是什么?

4

1 回答 1

1

The only supported way to authorize Drive API requests is OAuth 2.0 as username and password should never be required by a third-party app.

If you want to use the application's storage, you can authorize your app using service accounts: https://developers.google.com/accounts/docs/OAuth2ServiceAccount

于 2012-09-19T18:12:56.927 回答