1

我已经配置了omniauth、omniauth-dropbox 并设计了使用Dropbox 进行身份验证。但是每次我使用 Dropbox 登录时,它都会要求为 Dropbox 帐户授权应用程序,即使我已经授权过一次。每次用户登录时如何停止重新授权?

我使用https://github.com/spagalloco/omniauth-dropbox作为 Dropbox 策略。

4

1 回答 1

0

您需要将授权会话传递给 DropboxClient

# This will fail if the user didn't visit the above URL and hit 'Allow'
session.get_access_token

client = DropboxClient.new(session, ACCESS_TYPE)
于 2013-05-01T08:41:46.150 回答