Click or drag to resize
TagsRecentMultiplePages Method
Gets a list of recently tagged media. Paginates until a predefined limit is reached or the end is reached. Note this could increase your daily limit Check RateLimitLimit

Namespace: InstaSharp.Endpoints
Assembly: InstaSharp (in InstaSharp.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax
public Task<TagsMultiplePagesResponse> RecentMultiplePages(
	string tagName,
	string minTagId = "",
	string maxTagId = "",
	Nullable<int> maxPageCount = null,
	string stopatMediaId = null
)

Parameters

tagName
Type: SystemString
Return information about this tag.
minTagId (Optional)
Type: SystemString
Return media [before]after this min_tag_id. If you don't want to use this parameter, use null.
maxTagId (Optional)
Type: SystemString
Return media [after] before this max_tag_id. If you don't want to use this parameter, use null.
maxPageCount (Optional)
Type: SystemNullableInt32
the number of pages at which you wish to stop returning data. Otherwise it keeps going until the end. Be warned, you could quickly use your daily limit
stopatMediaId (Optional)
Type: SystemString
Doesnt return any data older than or including this id

Return Value

Type: TaskTagsMultiplePagesResponse
a response object containing a list of the media responses and the last returned Meta code
Remarks
http://stackoverflow.com/questions/20625173/how-does-instagrams-get-tags-tag-media-recent-pagination-actually-work?rq=1
See Also