如何更新 twitter omniauth 访问令牌和访问令牌秘密

Posted

技术标签:

【中文标题】如何更新 twitter omniauth 访问令牌和访问令牌秘密【英文标题】:How to update twitter omniauth access token and access token secret 【发布时间】:2021-02-01 11:05:42 【问题描述】:

在我的 rails 6 应用程序中,用户必须使用 twitter omniauth 登录并进行设计。我已经能够按照这个tutorial来实现它。

我遇到的问题是,当用户从他们的 Twitter 帐户中撤销我的应用程序权限时,我之前保存到我的数据库中的omniauth 访问令牌和访问秘密变得无效。如果同一用户决定重新进行身份验证,则该用户可以访问该应用,但该用户的令牌不会在数据库中更新,从而导致现有令牌无效。

我的问题是,如何持续更新数据库中的用户列,以便继续从 twitter 接收有效的访问令牌,尤其是当用户拥有访问令牌时。

这是来自我的用户模型的相关代码

  def self.from_omniauth(auth)
    where(provider: auth.provider, uid: auth.uid).first_or_create do |user|
    user.email = auth.info.email
    user.password = Devise.friendly_token[0, 20]
    user.name = auth.info.name
    user.username = auth.info.nickname
    user.location = auth.info.location
    user.access_token = auth.credentials.token
    user.access_secret = auth.credentials.secret
    end
  end

我的用户控制器看起来像这样

  def twitter
    @user = User.from_omniauth(request.env["omniauth.auth"])

    if @user.persisted?
      sign_in_and_redirect @user, event: :authentication #this will throw if @user is not activated
      set_flash_message(:notice, :success, kind: "Twitter") if is_navigational_format?
    else
      session["devise.twitter_data"] = request.env["omniauth.auth"].except("extra")
      redirect_to new_user_registration_url
    end
  end

【问题讨论】:

【参考方案1】:
    找到用户。 如果没有用户 - 创建用户。 使用新的omniauth 数据更新用户(现有和新用户)

这样的事情应该可以完成:

def self.from_omniauth(auth)
  #find from omniauth
  user = User.where(email: auth.email).first

  #find or create
  user ||= User.create(
    email: data["email"],
    password: Devise.friendly_token[0, 20]
  )
  #update with fresh data
  user.name = auth.info.name
  user.image = auth.info.image
  user.expires = auth.credentials.expires
  user.refresh_token = auth.credentials.refresh_token
end

【讨论】:

从哪里得到这些行来自 user.expires = auth.credentials.expires 和 user.refresh_token = auth.credentials.refresh_token 这是一个验证哈希github.com/zquestz/omniauth-google-oauth2#auth-hash的示例 我写了一个示例方法。你可以检索你想要的数据,比如access_tokenwhatever 我对此有错误,但现在它适用于 find_or_initialize_by 。感谢您的帮助【参考方案2】:

我通过使用 find_or_initialize_by 来处理它

   def self.from_omniauth(auth)
    user = find_or_initialize_by(provider: auth.provider, uid: auth.uid)
    user.email = auth.info.email
    user.password = Devise.friendly_token[0, 20]
    user.name = auth.info.name
    user.username = auth.info.nickname
    user.location = auth.info.location
    user.access_token = auth.credentials.token
    user.access_secret = auth.credentials.secret
    user.save!
    return user
  end

【讨论】:

以上是关于如何更新 twitter omniauth 访问令牌和访问令牌秘密的主要内容,如果未能解决你的问题,请参考以下文章

带有 Rails 5 的 Omniauth-twitter 停止工作! OAuth::Unauthorized 403 Forbidden

Ruby on rails omniauth-twitter 和设计

如何注销 Facebook - 在 Rails 应用程序中使用代码(Ruby on Rails Omniauth)

OAuth::Unauthorized 401 Unauthorized for omniauth-twitter in rails

使用omniauth-twitter的Ruby on Rails应用程序在heroku上不起作用“很抱歉,出了点问题。”

Rails omniauth Google - 如何更新个人资料数据