Displaying 4 results from an estimated 4 matches for "facebook_user".
2008 Jul 28
2
Profile updates using profile_main
...our
apps profile box to appear (either on the main profile page or the
boxes tab).
I''m currently using the Facebooker Publisher to send our updates. What
I had been using prior to updating to the newest Facebooker and works
fine with the old FB site is this:
def profile_update(facebook_user, user, install_url)
send_as :profile
from facebook_user
recipients facebook_user
fbml = render(:partial=>"/facebook/profile_fbml",:locals =>
{ :user => user, :fb_user => facebook_user, :install_url =>
install_url })
profile(fbml)
end
My unde...
2008 Feb 01
2
proposed patch for fb_request_form_submit
Hi, according to the Facebook docs, you can add a uid to the
fb_request_form_submit button which will pre select the user for the
form.
So you can do:
<fb:request-form action="/my_tasks" method="POST" invite="true"
type="MyApp" content="wants to invite you to xyz app">
<fb:request-form-submit uid="FRIENDID" />
2008 Apr 04
0
something wrong with event_members
I''ve got this code in one of my views:
<% for event in @facebook_session.events( :uid =>
@facebook_user.uid ) %>
<p><%= @facebook_session.event_members(event.eid).length %></p>
<% end %>
It should print the # of people coming to each of this user''s events.
Let''s say that would be "5 12 8". Instead it''s printing "5 5 5...
2008 Mar 30
0
undefined method using ensure_authenticated
...er, but I
consistently see this message:
"undefined local variable or method `ensure_authenticated_to_facebook''
for FacebookController:Class"
My controller is defined:
<<
class FacebookController < ApplicationController
ensure_authenticated_to_facebook
def index
@facebook_user = session[:facebook_session].user
end
end
>>
I have this route:
<<
map.root :controller => "facebook"
>>
I am using facebooker as a plugin inside my Rails app.
Any help would be greatly appreciated as I am really stumped on this one.
Toby Hede