Questions tagged [facebooker]

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

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

105 questions
0
votes
1 answer

Facebook doesn't notify me after the user grants extended permissions

I am developing a Facebook App which requires some extended permission. The problem is that Facebook doesn't automatically ping my app when those permissions are granted by the user. I have to manually query for them or the user must press a…
akafazov
  • 435
  • 1
  • 6
  • 14
0
votes
1 answer

Is it possible to fetch facebook user's profile without logging using facebook connect?

Basically, I want to fetch facebook profile avatars onto my application since I am using their login to create a particular record. How do we display their profile pic without actually forcing the user to connect into facebook to retrieve these…
Frank
  • 3,073
  • 5
  • 40
  • 67
0
votes
1 answer

I Don't Need a Facebook App, I just want their API (in Ruby)

Can I use Facebooker without having to create a whole Facebook App in their Developer section? I don't need to create a Facebook App with Facebooker, I just want to be able to create events and posts on Facebook with my own custom admin panel on my…
Lance
  • 75,200
  • 93
  • 289
  • 503
0
votes
2 answers

Publish story to news feed using facebooker [Ruby]

I followed the tutorial here http://yardoc.org/docs/mmangino-facebooker/Facebooker/User#publish_story-instance_method using @user.publish_to(@user, :message => 'hello world') Where @user is an instance of Facebooker::User. This method call causes…
user94154
  • 16,176
  • 20
  • 77
  • 116
0
votes
1 answer

One shot fql query - facebook api

$status = $facebook->api_client->fql_query("SELECT message,time FROM status WHERE uid in (SELECT uid2 FROM friend WHERE uid1=".$user.")"); echo "
";
print_r($status);
echo "
"; above query returns all statuses, i want only last 2 status…
anthony
  • 21
  • 6
0
votes
1 answer

Facebooker: Getting it to post to specific pages?

I am trying to post to specific pages and running into an issue. This is what I have where 1234 is a facebook uid @user = Facebooker::User.new(1234) @user.session = Facebooker::Session.create(KEY,SECRET) my_page =…
Matt Elhotiby
  • 43,028
  • 85
  • 218
  • 321
0
votes
3 answers

Getting information about a Facebook Page via API but without a session_key

I'm going to create a Facebook application which get informations (name and page_url) about Facebook page from his page_id. So i went to the Facebook Wiki and i found this API method which sounds good at first look…
0
votes
1 answer

how to get the text inputted into a fb:friend-selector

I want to get the text from an fb:friend-selector even if a friend was not selected, how cna I do this? So for example if someone enters someone who is not a friend, I want to be able to get that data. The form is submitted to my server and not…
jason
0
votes
1 answer

Facebooker and Cucumber with IFRAME: Session.current is not set

We just installed Facebooker and Authlogic on a new Rails app, but the Canvas JavaScript limitations persuaded us to choose the iframe to supply our application. Has anyone been successful using Cucumber and facebooker with an iframe app? I tried…
btelles
  • 5,390
  • 7
  • 46
  • 78
0
votes
2 answers

Facebooker not logging in on server (works locally)

I have these settings in my facebooker.yml file: app_id: secret: api_key: canvas_page_name: callback_url: http://beta.mydomain.com:80/ pretty_errors: true set_asset_host_to_callback_url: true When I try to log in…
Michael
  • 13,838
  • 18
  • 52
  • 81
0
votes
1 answer

nil facebook_session with Facebooker gem and Rails 2.2.2

Integrating FB Connect into our site using Rails 2.2.2 and Facebooker gem (latest version). Login button, xd_receiver files generated fine to the point where the login popup window will open, I can log in, and it will then execute the onlogin event,…
Kyle
  • 1,054
  • 2
  • 14
  • 27
0
votes
1 answer

Whats wrong with installing facebooker rails?

I try to install rails facebooker to my authlogic gems from here https://github.com/kalasjocke/authlogic_facebook_connect, but if sudo gem install facebooker i get from…
byCoder
  • 3,462
  • 6
  • 28
  • 49
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
votes
1 answer

Facebooker SSH Tunnel

I'm working through some inital setup of a dev environment for Facebook trying to use Facebooker and its SSH tunnel to expose my dev site. I’m having a lot of trouble with the SSH tunnel. I’ve made sure port 4007 is open and my SSH config contains…
Oakmad
  • 1
  • 1
-1
votes
1 answer

Why does facebook.feed.publishUserAction strip my image out?

I'm using the Facebooker plugin in Rails to publish a user action to their newsfeed, but the image isn't being added. The call (via Net::HTTP.post_form) looks like this: Posting to http://api.facebook.com/restserver.php…
Gwyn Morfey
  • 32,741
  • 6
  • 25
  • 21
1 2 3 4 5 6
7