Click or drag to resize
LocationsRecent Method (String, NullableDateTime, NullableDateTime, String, String)
Get a list of recent media objects from a given location.

Requires Authentication: False

Namespace: InstaSharp.Endpoints
Assembly: 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
)

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: TaskMediasResponse
media response
See Also