facebooker

Facebooker extended permissions?

浪子不回头ぞ 提交于 2019-12-31 01:51:33
问题 Facebook gives access to users' emails via the extended permission. There's also a way in JS and PHP to force users to grant the permission when they accept the app's TOS - http://wiki.developers.facebook.com/index.php/Extended_permissions Is there a way that I can do this with Facebooker? Regards.. 回答1: You can do it just like that : :jquery , :app_settings => " { permsToRequestOnConnect : 'email' }"} %> 'facebook') + '\'') %> Note: Also get the last version of facebooker, because previus

Can Facebook's Javascript SDK work together with the older Facebook API?

南笙酒味 提交于 2019-12-24 07:34:58
问题 Can the current Facebook Javascript SDK work with older Facebook API library? Right now there is code to load the current Facebook Javascript SDK by: window.fbAsyncInit = function() { FB.init({appId: '218565466928', status: true, cookie: true, xfbml: true}); }; // [...] initialize it And there is code to use the old Facebook API by init_fb_connect('Connect', 'XFBML', :js => :jquery, :app_settings=> '{ifUserNotConnected: fb_user_not_connected}' ) do which is the Facebooker Rubygem. Can they

Can Facebook's Javascript SDK work together with the older Facebook API?

时光总嘲笑我的痴心妄想 提交于 2019-12-24 07:32:04
问题 Can the current Facebook Javascript SDK work with older Facebook API library? Right now there is code to load the current Facebook Javascript SDK by: window.fbAsyncInit = function() { FB.init({appId: '218565466928', status: true, cookie: true, xfbml: true}); }; // [...] initialize it And there is code to use the old Facebook API by init_fb_connect('Connect', 'XFBML', :js => :jquery, :app_settings=> '{ifUserNotConnected: fb_user_not_connected}' ) do which is the Facebooker Rubygem. Can they

Is fb_graph or Koala ruby gem better than facebooker2, using the facebook graph?

荒凉一梦 提交于 2019-12-18 10:29:48
问题 Is the fb_graph gem better? It seems to be newer, but the facebooker has a lot more people using. http://github.com/nsanta/fbgraph http://github.com/mmangino/facebooker Update: I looked into koala, and it seems it is a good choice as well. http://github.com/arsduo/koala I also figure out that fb_graph is different than fbgraph. This is the right one: http://github.com/nov/fb_graph And there is a new facebooker, that uses that Open Graph API, but it doesnt look as mature as the others: http:/

how can i add fb_multi_friend_selector, Facebooker2

╄→гoц情女王★ 提交于 2019-12-13 21:53:10
问题 Hi i want to add to my app multi-friend-selector. I found a method in helpers: fb_multi_friend_selector. Am i supposed to do just: <%= fb_multi_friend_selector("Test message") %> Because it is not working for me. My user is authenticated in my app. I can see all of my fb friends names(with current_facebook_user.friends)...etc. So i am logged in. And i have the permission :perms => 'publish_stream'. What should i do to get fb_multi_friend_selector working? I am using rails 2.3.5. And

Rails 3.0.0.beta and Facebooker: anyone else seeing the following?

天大地大妈咪最大 提交于 2019-12-12 11:56:42
问题 My rails server seems to break after installing the facebooker plugin. Any suggestions on fixing this would be great. I'm using rails 3.0.0.beta and facebooker. Here are the steps and the error that I'm seeing: $ rails -v Rails 3.0.0.beta $ rails break; cd break $ ./script/rails plugin install git://github.com/mmangino/facebooker.git $ vim Rakefile #and add "require 'tasks/facebooker'" $ ./script/rails server => Booting WEBrick => Rails 3.0.0.beta application starting in development on http:/

Getting nested iframes with Facebooker in iframe app

余生颓废 提交于 2019-12-06 14:18:05
问题 Has anyone encountered nested iframes in their Rails/Facebooker application? Basically, every time I click an action or link, the entire facebook page reloads inside my existing iframe, causing two (and more on each subsequent click) facebook borders to appear. I've gone over the instructions three times and changed every setting imaginable, but the app still opens up in new facebook page inside the iframe. Any ideas anyone? itonly appears when I use the ensure_application_is_installed_by

Using Facebook Connect with Authlogic

我只是一个虾纸丫 提交于 2019-12-04 22:15:03
问题 I am trying to make Authlogic and Facebook Connect (using Facebook) play nice so that you can create an account either the normal registration way or with Facebook connect. I have been able to get the connect to work one way but logging out only loggs out on facebook and not on my site, I have to delete the cookies to make it working. Any help would be awesome, thank you! 回答1: Here's an example app I made using the Facebook Connect extension, authlogic and Open ID. It still needs some work,

Getting nested iframes with Facebooker in iframe app

◇◆丶佛笑我妖孽 提交于 2019-12-04 19:13:50
Has anyone encountered nested iframes in their Rails/Facebooker application? Basically, every time I click an action or link, the entire facebook page reloads inside my existing iframe, causing two (and more on each subsequent click) facebook borders to appear. I've gone over the instructions three times and changed every setting imaginable, but the app still opens up in new facebook page inside the iframe. Any ideas anyone? itonly appears when I use the ensure_application_is_installed_by_facebook_user filter, but if the user already has the application installed and I use the ensure

Using Facebook Connect with Authlogic

空扰寡人 提交于 2019-12-03 14:23:39
I am trying to make Authlogic and Facebook Connect (using Facebook) play nice so that you can create an account either the normal registration way or with Facebook connect. I have been able to get the connect to work one way but logging out only loggs out on facebook and not on my site, I have to delete the cookies to make it working. Any help would be awesome, thank you! Here's an example app I made using the Facebook Connect extension, authlogic and Open ID. It still needs some work, but it does function. http://big-glow-mama.heroku.com/ http://github.com/holden/authlogic_openid_selector