Questions tagged [facebooker2]

facebooker2 is a Facebook Connect library version 2 for ruby that provides rails helpers for interfacing with Facebook's Open-graph JavaScript API.

facebooker2 is a Facebook Connect library for ruby that provides rails helpers for interfacing with Facebook's Open-graph JavaScript API.

40 questions
0
votes
1 answer

how can i use fb_server_fbml helper method in facebooker2?

I am developing a facebook app using rails 3 and facebooker2 i cannot find any example on how to use fb_server_fbml helper method. what is "proc" in its paramter. Can anyone provide me with sample code? Thanks
Zahid
  • 1
0
votes
1 answer

facebook_session.user.friends_with_this_app.map(&:id).join(","); how can I do such thing in Facebooker2

<%= fb_multi_friend_selector("Invite your friends to check out this site", :showborder => true,:exclude_ids => facebook_session.user.friends_with_this_app.map(&:id).join(","), :condensed => false) %> as you see above , :exclude_ids =>…
dexterdeng
  • 249
  • 3
  • 13
0
votes
2 answers

Ruby on Rails: how to use facebooker2 to get profile pictures from users when they are not logged in on my app

So I am playing with facebooker2. I already know how to display current user's profile picture when they are logged in. However, I am interested in display the profile pictures of other users on my app as well. I was wondering if anyone knows how to…
Jacky
  • 49
  • 1
  • 5
0
votes
1 answer

How to fetch profile pic with facebooker2 other than current user

How do I fetch the profile pics of users who have granted my application permission for offline access? Example: User 1 grants my application permissions and log in. User 2 logs in, and is able to see the profile pic of User 1, without having any fb…
John
  • 1
  • 1
0
votes
1 answer

ruby on rails: How do I use facebooker2 to make wallpost on my wall or my friends' wall?

So I am using facebooker2 plugin to do facebook connect. I was able to extract information about a user, but here's what I have been struggling with... I am not sure how to post something onto my wall or my friends' walls.. I know that in…
Jacky
  • 49
  • 1
  • 5
0
votes
1 answer

With Rails, how to convert code which used Facebooker to using Facebooker2?

There is code to use Facebooker gem (which uses the old Facebook REST API). Does someone have experience how to convert those code to using Facebooker2, which uses the new Facebook Graph API? For example, Facebooker has Facebooker::Session and…
nonopolarity
  • 146,324
  • 131
  • 460
  • 740
0
votes
1 answer

Facebook Post as a image

I wants to post a post on Facebook as a Image not a text (and not as album too) , And I'm using below code : def facebook_page @page ||= Mogli::Page.new(:id => facebook_page_id, :client => Mogli::Client.new(facebook_page_token)) end def…
Neelesh
  • 1,458
  • 2
  • 13
  • 20
0
votes
1 answer

Facebook automatic login needing double page load on Rails 3

With Facebook logged in and app authenticated, a Rails 3 site with Facebooker2 needs 2 page reloads until it automatically logs in to Facebook. How can I make passive login work on first page load? ruby 1.9.3p125, rails 3.2.3, facebooker2 0.0.16
0
votes
1 answer

Facebooker2 returning users UID but not name

I am just using the standard Facebooker2 setup. <%= fb_connect_async_js %> <% if current_facebook_user %> <%= "Hello #{fb_name(current_facebook_user, :useyou => false)}!" %> <%=…
ap-andrew
  • 131
  • 4
0
votes
1 answer

Facebooker log out logs user out of facebook

Is it possible to log out of a Facebooker app without logging the user out of Facebook?
Michael
  • 13,838
  • 18
  • 52
  • 81
1 2
3