| UsersFeed Method |
See the authenticated user's feed.
Requires Authentication: True
Namespace: InstaSharp.EndpointsAssembly: InstaSharp (in InstaSharp.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax public Task<MediasResponse> Feed(
string maxId,
string minId,
Nullable<int> count
)
Public Function Feed (
maxId As String,
minId As String,
count As Nullable(Of Integer)
) As Task(Of MediasResponse)
public:
Task<MediasResponse^>^ Feed(
String^ maxId,
String^ minId,
Nullable<int> count
)
member Feed :
maxId : string *
minId : string *
count : Nullable<int> -> Task<MediasResponse>
Parameters
- maxId
- Type: SystemString
The maximum identifier. - minId
- Type: SystemString
The minimum identifier. - count
- Type: SystemNullableInt32
The count.
Return Value
Type:
TaskMediasResponseMedia Response
See Also