我在Rails应用程序中使用这个gem进行Facebook身份验证。
我在IE中遇到了一些问题,我认为这是因为这个文件中的Javascript存在问题-
如果你看第52行,似乎我可以传递选项到channelUrl。
我正在实现一个像这样的登录按钮-
<%= fb_login(:text=>"Log in") %>
我可以从我的应用程序做到这一点,还是我需要编辑gem?
如果我看一下README,你应该有一个像这样的部分:
<%= fb_connect_async_js %>
<% if current_facebook_user %>
<%= "Welcome #{current_facebook_user.first_name} #{current_facebook_user.last_name}!" %>
or
<%= "Hello #{fb_name(current_facebook_user, :useyou => false)}!" # link to facebook profile %>
<%= fb_logout_link("Logout of fb", request.url) %><br />
<% else
# you must explicitly request permissions for facebook user fields.
# here we instruct facebook to ask the user for permission for our website
# to access the user's facebook email and birthday
%>
<%= fb_login(:text => 'Log in', :perms => 'email,user_birthday') %>
<% end %>
在这种情况下,您只需将选项传递给fb_connect_async_js
:
<%= fb_connect_async_js :channel_url => 'http://blahblah' %>
... rest of the partial ...
如果你的部分不像上面的,你应该编辑你的问题来发布你的(完整的)。