我如何从我的朋友facebook中检索信息,
我将检索此信息:位置,朋友的朋友数量,描述,图片,名称,
var fbClient = new FacebookSdkClient(identity.Token.Token);
dynamic myInfo = fbClient.Get("/me/friends?fields=id,name,friendlists,location,picture");
我为我的英语道歉,
由于
答案 0 :(得分:0)
我会使用FQL
dynamic friends = fbClient.Get("fql", new { q = "select uid, name, first_name, last_name, current_location, pic from user where uid in (select uid2 from friend where uid1=me())" });
请注意,您需要相应的权限。
我认为你不能得到你朋友的朋友名单。
希望有所帮助!