omn​​iauth-facebook用户个人资料成为管理员的图片

时间:2015-04-12 20:39:01

标签: ruby-on-rails facebook-graph-api devise omniauth omniauth-facebook

我将omniauth-facebook gem与gem集成到我的网站中,并添加了一些Facebook朋友作为我的应用程序的测试人员,但每次有人使用Facebook登录我的图片作为管理员得到持久作为他们的图片。奇怪的是,他们的名字和姓氏得到了正确的保持。该应用仍处于沙盒模式。

在models / user.rb中我有

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.firstname = auth.info.first_name
    user.lastname = auth.info.last_name
    user.avatar = auth.info.image
  end
end

def self.new_with_session(params, session)
  super.tap do |user|
    if data = session["devise.facebook_data"] && session["devise.facebook_data"]["extra"]["raw_info"]
      user.email = data["email"] if user.email.blank?
    end
  end
end

并在initializers / devise.rb中我有

config.omniauth :facebook, "APP-ID", "APP-SECRET", :scope => "email, public_profile", :image_size => "normal", :secure_image_url => true

编辑1: 我正在使用Dropbox应用程序托管图片。在应用程序中,我可以看到测试者图片被持久化为图片,图片(1),图片(2)等。当我打开rails控制台时,avatar_file_name(因为我使用了paperclip gem)是每个测试者配置文件的“图片”,因此所有都获得相同的配置文件图片。有没有一种方法可以将图片保存为图片 - “UID”,以便它们都有不同的名称?

1 个答案:

答案 0 :(得分:0)

似乎可以通过使用路径选项解决问题的解决方案。

在models / user.rb中添加指纹以进行更多的消除。

fingerprint = Time.now

has_attached_file :avatar, :styles => { :medium => "300x300>", :pin => "30x30>" }, :default_url => "/images/missing.png", :storage => :dropbox, :dropbox_credentials => Rails.root.join("config/dropbox.yml"), :path => ":style/#{fingerprint}_:id_:filename"
validates_attachment_content_type :avatar, :content_type => /\Aimage\/.*\Z/