Displaying 1 result from an estimated 1 matches for "update_profile_fbml_for_us".
Did you mean:
update_profile_fbml_for_user
2008 Jan 14
0
Setting profile FBML for a Facebook Page
...gt; markup)
end
The UID is actually hard coded to be the authenticated User. This is
more restrictive than the Facebook API allows. You can actually pass
in any User ID. And Facebook pages act like users so get around this
I changed it around a little.
def profile_fbml=(markup)
update_profile_fbml_for_user(markup, @id)
end
def update_profile_fbml_for_user(markup, user_id)
session.post(''facebook.profile.setFBML'', :uid => user_id,
:markup => markup)
end
Hope this helps some people out, I didn''t really even understand
Facebook Pages until I got th...