예제 #1
0
 /// <summary>
 /// This edge allows you to:
 /// get the User's friends who have installed the app making the query
 /// get the User's total number of friends (including those who have not installed the app making the query)
 /// <para>Requires  <b>"user_friends" </b> permission
 /// <see href="https://developers.facebook.com/docs/graph-api/reference/user/friends"/> for information </para>
 /// </summary>
 /// <param name="limit">Result limit </param>
 /// <param name="callback">Request callback </param>
 /// <param name="fbCursor">Pagination cursor pointer </param>
 public static void GetFriends(int limit, Action <FbGraphFriendsListResult> callback, FbCursor cursor)
 {
     FbGraphApi.GetFriends(limit, callback, cursor);
 }
예제 #2
0
 /// <summary>
 /// Retries current logged user info.
 /// See <see cref="FbUser"/> for more details.
 /// </summary>
 /// <param name="callback"></param>
 public static void GetLoggedInUserInfo(Action <FbGetUserResult> callback)
 {
     FbGraphApi.GetLoggedInUserInfo(callback);
 }