public interface SocialContextOperations
Modifier and Type | Method and Description |
---|---|
CountedList<Reference> |
getAllMutualFriends(String userId)
Fetches a counted list of (at most 25) friends that the authenticated user shares in common with the given user.
|
CountedList<Reference> |
getAllMutualFriends(String userId,
int limit)
Fetches a counted list of friends that the authenticated user shares in common with the given user.
|
CountedList<Reference> |
getFriendsTaggedAt(String placeId) |
CountedList<Reference> |
getFriendsTaggedAt(String placeId,
int limit) |
CountedList<Reference> |
getFriendsUsingApp(String appId) |
CountedList<Reference> |
getFriendsUsingApp(String appId,
int limit) |
CountedList<Reference> |
getFriendsWhoLike(String objectId) |
CountedList<Reference> |
getFriendsWhoLike(String objectId,
int limit) |
CountedList<Reference> |
getFriendsWhoListenTo(String objectId) |
CountedList<Reference> |
getFriendsWhoListenTo(String objectId,
int limit) |
CountedList<Reference> |
getFriendsWhoWatched(String videoId) |
CountedList<Reference> |
getFriendsWhoWatched(String videoId,
int limit) |
CountedList<Reference> |
getMutualFriends(String userId)
Fetches a counted list of (at most 25) friends that the authenticated user shares in common with the given user.
|
CountedList<Reference> |
getMutualFriends(String userId,
int limit)
Fetches a counted list of friends that the authenticated user shares in common with the given user.
|
CountedList<Reference> |
getMutualLikes(String userId)
Fetches a counted list of (at most 25) pages that both the authenticated user shares and the given user have liked.
|
CountedList<Reference> |
getMutualLikes(String userId,
int limit)
Fetches a counted list of pages that both the authenticated user shares and the given user have liked.
|
CountedList<Reference> getMutualFriends(String userId)
userId
- the ID of the user to query for mutual friendsCountedList
of friends that the authenticated user has in common with the given user.CountedList<Reference> getMutualFriends(String userId, int limit)
userId
- the ID of the user to query for mutual friendslimit
- the maximum number of common friends to return.CountedList
of friends that the authenticated user has in common with the given user.CountedList<Reference> getAllMutualFriends(String userId)
userId
- the ID of the user to query for mutual friendsCountedList
of friends that the authenticated user has in common with the given user.CountedList<Reference> getAllMutualFriends(String userId, int limit)
userId
- the ID of the user to query for mutual friendslimit
- the maximum number of common friends to return.CountedList
of friends that the authenticated user has in common with the given user.CountedList<Reference> getMutualLikes(String userId)
userId
- the ID of the user to query for mutual likesCountedList
of page references that both the authenticated user shares and the given user have liked.CountedList<Reference> getMutualLikes(String userId, int limit)
userId
- the ID of the user to query for mutual likeslimit
- the maximum number of common likes to return.CountedList
of page references that both the authenticated user shares and the given user have liked.CountedList<Reference> getFriendsUsingApp(String appId)
CountedList<Reference> getFriendsUsingApp(String appId, int limit)
CountedList<Reference> getFriendsWhoLike(String objectId)
CountedList<Reference> getFriendsWhoLike(String objectId, int limit)
CountedList<Reference> getFriendsWhoWatched(String videoId)
CountedList<Reference> getFriendsWhoWatched(String videoId, int limit)
CountedList<Reference> getFriendsWhoListenTo(String objectId)
CountedList<Reference> getFriendsWhoListenTo(String objectId, int limit)
CountedList<Reference> getFriendsTaggedAt(String placeId)
CountedList<Reference> getFriendsTaggedAt(String placeId, int limit)