2

我已经设置设计来处理我的身份验证,并且还使用omniauth 进行第三方身份验证,这对我也很有效。我可以通过在我的用户模型中设置此方法来检索名称、昵称

def self.from_omniauth(auth)
    where(auth.slice(:provider, :uid)).first_or_create do |user|
      user.provider = auth.provider
      user.uid = auth.uid
      user.username = auth.info.nickname
      user.username = auth.info.first_name
      user.email = auth.info.email
      user.photo = auth.info.image

    end
  end

每当我尝试通过以下方式验证用户身份时,我都会使用回形针来处理我的图像处理

user.photo = auth.info.image

我收到这样的错误

Paperclip::AdapterRegistry::NoHandlerError in OmniauthCallbacksController#facebook

No handler found for "http://graph.facebook.com/100006033401739/picture?type=square"

无论如何,还是有什么不对劲?

我的 OmniauthCallbacksController 控制器是这样的:

class OmniauthCallbacksController < Devise::OmniauthCallbacksController
  def all
    user = User.from_omniauth(request.env["omniauth.auth"])
    if user.persisted?
      flash.notice = "Signed in!"
      sign_in_and_redirect user
    else
      session["devise.user_attributes"] = user.attributes
      redirect_to new_user_registration_url
    end
  end
  alias_method :twitter, :all
  alias_method :facebook, :all
  alias_method :google_oauth2, :all
end
4

2 回答 2

3

问题是回形针需要一个图像文件,而您只是传递了一个图像url

我建议有2个不同的属性:photoremote_photo

  • 如果使用 facebook、google 和 twitter 登录,则将remote_photo属性设置为auth.info.image返回。

  • 如果上传照片,您将使用该photo属性。

但是,如果你无论如何都想下载一个人的 facebook、google 和 twitter 图片,你可以这样做:

user.photo = URI.parse(auth.info.image) if auth.info.image?

此功能有点新,因此请确保您使用的 Paperclip 版本大于 3.1.3。

于 2013-08-16T15:41:37.220 回答
1

从 Paperclip 版本开始5.2,gem 默认不再加载IO 适配器。这意味着如果您传递 URI/HTTP 字符串/等。作为附件,它不会像以前那样自动上传。

如果您需要这样做 - 例如,上传来自 Facebook Graph(omniauth 集成)的照片 - 将一个或多个适配器添加到您的config/initializers/paperclip.rb,例如:

Paperclip::HttpUrlProxyAdapter.register

在此处查看其他适配器:https ://github.com/thoughtbot/paperclip#io-adapters 。

于 2018-02-08T11:40:44.443 回答