What would the FB.API call be to get 10 random friends? I am pretty sure this can be done with an fql query, but I do not know the exact syntax.
It would have the form:
FB.API(fqlQuery, Facebook.HttpMethod.GET, getNRandomFriendsCallback);
So my question, is what should fqlQuery be equal to?
I currently have it set to: string fqlQuery = "/fql?q={SELECT uid, name FROM user WHERE uid IN ( SELECT uid2 FROM friend WHERE uid1 = me() ) ORDER BY rand() limit 10 }";
But this returning 400 Bad Request.
Thank you.