| UsersRecentSelf Method (String, String, NullableInt32, NullableDateTime, NullableDateTime) |
Get the most recent media published by the logged in user.
Requires Authentication: True
Namespace: InstaSharp.EndpointsAssembly: InstaSharp (in InstaSharp.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax public Task<MediasResponse> RecentSelf(
string maxId,
string minId,
Nullable<int> count,
Nullable<DateTime> minTimestamp,
Nullable<DateTime> maxTimestamp
)
Public Function RecentSelf (
maxId As String,
minId As String,
count As Nullable(Of Integer),
minTimestamp As Nullable(Of DateTime),
maxTimestamp As Nullable(Of DateTime)
) As Task(Of MediasResponse)
public:
Task<MediasResponse^>^ RecentSelf(
String^ maxId,
String^ minId,
Nullable<int> count,
Nullable<DateTime> minTimestamp,
Nullable<DateTime> maxTimestamp
)
member RecentSelf :
maxId : string *
minId : string *
count : Nullable<int> *
minTimestamp : Nullable<DateTime> *
maxTimestamp : Nullable<DateTime> -> Task<MediasResponse>
Parameters
- maxId
- Type: SystemString
Return media earlier than this max_id. - minId
- Type: SystemString
Return media later than this min_id. - count
- Type: SystemNullableInt32
Count of media to return. - minTimestamp
- Type: SystemNullableDateTime
Return media after this timestamp. - maxTimestamp
- Type: SystemNullableDateTime
Return media before this timestamp.
Return Value
Type:
TaskMediasResponseMedia Response
See Also