Click or drag to resize
TagsRecent Method (String, String, String, NullableInt32)
Get a list of recently tagged media. Note that this media is ordered by when the media was tagged with this tag, rather than the order it was posted. Use the max_tag_id and min_tag_id parameters in the pagination response to paginate through these objects.

Namespace: InstaSharp.Endpoints
Assembly: InstaSharp (in InstaSharp.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public Task<MediasResponse> Recent(
	string tagName,
	string minTagId,
	string maxTagId,
	Nullable<int> count
)

Parameters

tagName
Type: SystemString
Return information about this tag.
minTagId
Type: SystemString
Return media before this min_tag_id. If you don't want to use this parameter, use null.
maxTagId
Type: SystemString
Return media after this max_tag_id. If you don't want to use this parameter, use null.
count
Type: SystemNullableInt32
Count of tagged media to return. Will still be governed by Instagram's enforced limit.

Return Value

Type: TaskMediasResponse
Medias Response
See Also