Click or drag to resize
UsersRecent Method (String, String, String, NullableInt32, NullableDateTime, NullableDateTime)
Get the most recent media published by a user.

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 id,
	string maxId,
	string minId,
	Nullable<int> count,
	Nullable<DateTime> minTimestamp,
	Nullable<DateTime> maxTimestamp
)

Parameters

id
Type: SystemString
The id of the user.
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: TaskMediasResponse
Media Response
See Also