Iam试图将facebook个人资料图片调整为大图。据我所知,为了使个人资料图片变大,我必须输入 http://graph.facebook.com/id/picture?type=large
从我现在的代码中得到的代码如下 http://graph.facebook.com/id/picture?type=square
如何更改用户信息以使个人资料图片的图片很大,并且每个用户个人资料图片都会这样做。 (注意:我不希望它在其他地方调整大小)。
用户信息
<h1 class="twshadow">
<%= current_user.name %>
**<%= image_tag current_user.image %>**
</h1>
<span>
<%= link_to "View my Profile", current_user %>
</span>
USER.RB
class User < ActiveRecord::Base
attr_accessible :name, :oauth_expires_at, :oauth_token, :provider, :uid, :email, :image
def self.from_omniauth(auth)
where(auth.slice(:provider, :uid)).first_or_initialize.tap do |user|
user.provider = auth.provider
user.uid = auth.uid
user.name = auth.info.name
user.email = auth.info.email
user.image = auth.info.image
user.oauth_token = auth.credentials.token
user.oauth_expires_at = Time.at(auth.credentials.expires_at)
user.save!
end
end
end
DATABASE
class CreateUsers < ActiveRecord::Migration
def change
create_table :users do |t|
t.string :provider
t.string :uid
t.string :name
t.string :email
t.string :image
t.string :oauth_token
t.datetime :oauth_expires_at
t.timestamps
end
end
end
class ApplicationController < ActionController::Base
protect_from_forgery
private
def current_user
@current_user ||= User.find(session[:user_id]) if session[:user_id]
end
helper_method :current_user
end
答案 0 :(得分:2)
<%= image_tag "http://graph.facebook.com/#{current_user.uid}/picture?type=large" %>
这是我使用的解决方案