Carlos Paramio
2009-Feb-03 12:37 UTC
[Facebooker-talk] [OT] "Wanna wine?", a new app built with Facebooker
Hi everybody! I wanted to announce that we''ve published our new Facebook application built with the help of Facebooker. It''s currently in beta and some of the missing features are coming this week, but you maybe are interested into take a look. His name is "Wanna wine?", and it''s a social network for wine lovers where they can discover new wines that matches their personal tastes. http://apps.facebook.com/wannawine/ Thanks to the Facebooker team for the fantastic gem! Carlos Paramio evolve studio | www.evolve.st
Mike Mangino
2009-Feb-03 14:07 UTC
[Facebooker-talk] [OT] "Wanna wine?", a new app built with Facebooker
Congratulations! It looks good! I''ll be adding my wine to the list shortly. I''d love to hear what apps other people are releasing user Facebooker. Mike On Feb 3, 2009, at 7:37 AM, Carlos Paramio wrote:> Hi everybody! > > I wanted to announce that we''ve published our new Facebook > application built with the help of Facebooker. It''s currently in > beta and some of the missing features are coming this week, but you > maybe are interested into take a look. His name is "Wanna wine?", > and it''s a social network for wine lovers where they can discover > new wines that matches their personal tastes. > > http://apps.facebook.com/wannawine/ > > Thanks to the Facebooker team for the fantastic gem! > > Carlos Paramio > evolve studio | www.evolve.st > _______________________________________________ > Facebooker-talk mailing list > Facebooker-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/facebooker-talk-- Mike Mangino http://www.elevatedrails.com
Nnanna Obuba
2009-Feb-03 15:14 UTC
[Facebooker-talk] [OT] "Wanna wine?", a new app built with Facebooker
I''ve just installed the app. I don''t know if you noticed, but it shows "Wanna a wine" not "Wanna wine" in the app Nnanna On Feb 3, 2009, at 7:37 AM, Carlos Paramio wrote:> Hi everybody! > > I wanted to announce that we''ve published our new Facebook > application built with the help of Facebooker. It''s currently in > beta and some of the missing features are coming this week, but you > maybe are interested into take a look. His name is "Wanna wine?", > and it''s a social network for wine lovers where they can discover > new wines that matches their personal tastes. > > http://apps.facebook.com/wannawine/ > > Thanks to the Facebooker team for the fantastic gem! > > Carlos Paramio > evolve studio | www.evolve.st > _______________________________________________ > Facebooker-talk mailing list > Facebooker-talk at rubyforge.org > http://rubyforge.org/mailman/listinfo/facebooker-talk
Carlos Paramio
2009-Feb-03 15:29 UTC
[Facebooker-talk] [OT] "Wanna wine?", a new app built with Facebooker
> I''ve just installed the app. I don''t know if you noticed, but it > shows "Wanna a wine" not "Wanna wine" in the appGood eye :) Yeah, we realize later that it should be "Wanna wine" and not "Wanna a wine". We already have an app called "Wanna Wine" redirecting to this other, but we need to maintain the old one for at least a couple of weeks because we already did some contacts using the old name. Anyway, the app name for the about page should say "Wanna wine" too. Thanks for notify it! Carlos Paramio evolve studio | www.evolve.st> > > Nnanna > > On Feb 3, 2009, at 7:37 AM, Carlos Paramio wrote: > >> Hi everybody! >> >> I wanted to announce that we''ve published our new Facebook >> application built with the help of Facebooker. It''s currently in >> beta and some of the missing features are coming this week, but you >> maybe are interested into take a look. His name is "Wanna wine?", >> and it''s a social network for wine lovers where they can discover >> new wines that matches their personal tastes. >> >> http://apps.facebook.com/wannawine/ >> >> Thanks to the Facebooker team for the fantastic gem! >> >> Carlos Paramio >> evolve studio | www.evolve.st >> _______________________________________________ >> Facebooker-talk mailing list >> Facebooker-talk at rubyforge.org >> http://rubyforge.org/mailman/listinfo/facebooker-talk
Nnanna Obuba
2009-Feb-04 00:48 UTC
[Facebooker-talk] How do you find user''s friends that have installed your app?
I did not quite get how the example in the Mike Mangino book did it Thanks in Advance Nnanna
Malisart Aurélien
2009-Feb-04 06:40 UTC
[Facebooker-talk] How do you find user''s friends that have installed your app?
Hi, There is a "friends_with_this_app" method inside Facebooker::User. So you need to call it on the current facebooker user: facebook_session.user.friends_with_this_app Hope it helps. Aur?lien
Nnanna Obuba
2009-Feb-04 12:58 UTC
[Facebooker-talk] How do you find user''s friends that have installed your app?
Thanks. for anyone who is interested, here''s the syntax as I used it to return an array of uids for friends of the current user who have installed your app 1. Using the facebooker method @current_users = current_user.facebook_session.user.friends_with_this_app.map {|x| x.uid} 2. Using FQL already_in = current_user.facebook_session.fql_query( "SELECT uid FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1= #{current_user.facebook_id} ) AND is_app_user") @current_users = already_in.map {|y| y.uid} Of course if you want the user objects instead of the uids you can just remove the map stuff at the end Hope it makes someone''s life easier, like Aurelien''s post made mine Nnanna On Feb 4, 2009, at 1:40 AM, Malisart Aur?lien wrote:> Hi, > > There is a "friends_with_this_app" method inside Facebooker::User. > So you need to call it on the current facebooker user: > > facebook_session.user.friends_with_this_app > > Hope it helps. > > Aur?lien >