Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

i could realy use some help here, how can i make a simple facebook connection and get the online friends with the new facebook sdk for C#? 10Q.

share|improve this question
any help would be appreciated, 10x – yoni Apr 11 '11 at 21:50

1 Answer

I would do an FQL multiquery

query0, select all friends query1, select all online friends , from query0.

var fb = new FacebookWebClient();
dynamic result = fb.Query(query0, query1);

See example in my other answer here:

Starting multiquery in client throws parser error

Check also this other question: How to get list of online friends using FQL with facebook API ?

And these:

http://developers.facebook.com/docs/reference/fql/user/

http://developers.facebook.com/docs/reference/fql/friend/

Remember to grant the proper permissions to access that information, which I think are "friends_about_me" in this case.

Check also here: http://developers.facebook.com/docs/authentication/permissions/

Hope this helps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.