| LocationsRecent Method (String, NullableDateTime, NullableDateTime, String, String) |
Get a list of recent media objects from a given location.
Requires Authentication: False
Namespace: InstaSharp.EndpointsAssembly: InstaSharp (in InstaSharp.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax public Task<MediasResponse> Recent(
string locationId,
Nullable<DateTime> minTimestamp,
Nullable<DateTime> maxTimestamp,
string minId,
string maxId
)
Public Function Recent (
locationId As String,
minTimestamp As Nullable(Of DateTime),
maxTimestamp As Nullable(Of DateTime),
minId As String,
maxId As String
) As Task(Of MediasResponse)
public:
Task<MediasResponse^>^ Recent(
String^ locationId,
Nullable<DateTime> minTimestamp,
Nullable<DateTime> maxTimestamp,
String^ minId,
String^ maxId
)
member Recent :
locationId : string *
minTimestamp : Nullable<DateTime> *
maxTimestamp : Nullable<DateTime> *
minId : string *
maxId : string -> Task<MediasResponse>
Parameters
- locationId
- Type: SystemString
The id of the location about which to retrieve information. - minTimestamp
- Type: SystemNullableDateTime
Return media after this UNIX timestamp - maxTimestamp
- Type: SystemNullableDateTime
Return media before this UNIX timestamp - minId
- Type: SystemString
Return media before this min_id - maxId
- Type: SystemString
Return media after this max_id
Return Value
Type:
TaskMediasResponsemedia response
See Also