私は自分の認証を処理するためのデバイスをセットアップしました。また、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