| UsersLiked Method |
See the authenticated user's list of media they've liked. Note that this list is ordered by the order in which the user liked the media. Private media is returned as long as the authenticated user has permission to view that media. Liked media lists are only available for the currently authenticated user.
Requires Authentication: True
Namespace: InstaSharp.EndpointsAssembly: InstaSharp (in InstaSharp.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax public Task<MediasResponse> Liked(
string maxLikeId,
Nullable<int> count
)
Public Function Liked (
maxLikeId As String,
count As Nullable(Of Integer)
) As Task(Of MediasResponse)
public:
Task<MediasResponse^>^ Liked(
String^ maxLikeId,
Nullable<int> count
)
member Liked :
maxLikeId : string *
count : Nullable<int> -> Task<MediasResponse>
Parameters
- maxLikeId
- Type: SystemString
Return media ealier than this maxLikeId. - count
- Type: SystemNullableInt32
Count of media to return.
Return Value
Type:
TaskMediasResponseMedia Response
See Also