Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Active Record is a pattern that combines domain logic with storage abstraction in single object.

learn more… | top users | synonyms (1)

0
votes
1answer
60 views

ActiveRecord query is not working properly

I'm using Koala api to query Facebook. @result = @graph.fql_query("select uid, name, pic_square FROM user WHERE is_app_user AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me())") I'd like to ...
1
vote
1answer
109 views

How to create an ActiveRecord model with some attributes that are stored in the database and some that are read from Facebook

In my application I have a user object model. I'm using koala and OmniAuth to access Facebook. I'm trying to figure out how to add the data from Facebook to my model in such a way that my controller ...
-1
votes
1answer
280 views

group_by education - rails 3

I am building a prototype of a education application using Rails 3, omniauth and the facebook graph api. So when a User log in to my application he uses his facebook account, I grab all his education ...
0
votes
2answers
121 views

Rails 3 Facebook user model?

What is the best way to model a Facebook user using ActiveRecord in Rails 3? As an id field is automatically created, how can I get rid of the auto_increment on this and populate this with the fb_id ...
1
vote
2answers
198 views

Filtering an array based on database records

I have an Array if a user's Facebook friend list as follows: [ { 'name' => 'John Mallock', 'id' => '123123' }, { 'name' => 'Susan Freely', 'id' => '123123123' }, ... ] I'd like to ...