Displaying 1 result from an estimated 1 matches for "profile_main".
2008 Jul 28
2
Profile updates using profile_main
...m 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 understanding is the new FB site requires that you use profile_main
to get your app box posted as before, so I changed the above to:
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 => us...