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 would like to execute a FQL to retrieve all app user's friends.

In previous versions of the sdk it could be done with:

var client = new FacebookWebClient();
client.Query(String.Format("SELECT uid, name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = {0})", me.id));

but with the version 6.0.10 I have no clue how can I do the same.

Any ideas?

share|improve this question

2 Answers

up vote 12 down vote accepted

You can actually get the same with Graph API call:

var client = new FacebookClient();
var query = string.Format("SELECT uid, name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = {0})", me.id);

dynamic parameters = new ExpandoObject();
parameters.q = query;
dynamic results = client.Get("/fql", parameters);
share|improve this answer
Thanks! Is there any way to get the user facebook id like before: FacebookWebContext.Current.UserID? – Diego Mar 19 '12 at 17:17
1  
Actually, where can I find some documentation? because everything is different now, and the official site doesn't provide complete documentation :( – Diego Mar 19 '12 at 17:35
1  
It seems that the new place for the SDK (csharpsdk.org) doesn't have a complete documentation, just the basics. New documentation is just something in progress... For now you can dig into code to get more information, and build a help file (there is a documentation "project file" (for Sandcastle Help File Builder) located in Build folder of SDK sources. – Juicy Scripter Mar 19 '12 at 18:01
Thank you very much – Diego Mar 19 '12 at 18:49
1  
@prabir fbClient.Query() - another feature ripped from the once great Facebook C# Library for us to figure out and implement ourselves :-/ why??? I basically need to take the code above and reimplement Query() – reach4thelasers Jun 21 '12 at 19:52
show 2 more comments

FQL

var fb = new FacebookClient("access_token");
dynamic result = fb.Get("fql", 
    new { q = "SELECT uid FROM user WHERE uid=me()" });

FQL Multi Query

var fb = new FacebookClient("access_token");
dynamic result = fb.Get("fql", new
    {
        q = new[]
                {
                    "SELECT uid from user where uid=me()",
                    "SELECT name FROM user WHERE uid=me()"
                }
    });

FQL named multi-query

var fb = new FacebookClient("access_token");
dynamic result = fb.Get("fql",
    new
        {
            q = new
            {
                id = "SELECT uid from user where uid=me()",
                name = "SELECT name FROM user WHERE uid " +
                "IN (SELECT uid FROM #id)",
            }
        });
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.