I'm using the api wrapper Instasharp to get all of my pictures. Is there any skip parameter for this? At the moment i have the following url to get my pictures:
"https://api.instagram.com/v1/tags/{3}/media/recent?client_id={0}&count={1}";
I'm using the api wrapper Instasharp to get all of my pictures. Is there any skip parameter for this? At the moment i have the following url to get my pictures:
"https://api.instagram.com/v1/tags/{3}/media/recent?client_id={0}&count={1}";
根据 IG 的文档,似乎没有任何“跳过”参数。您需要使用“min_id”和“max_id”对 IG 数据调用进行分页。
http://instagram.com/developer/endpoints/tags/
IG 信息,截至 2013 年 8 月 6 日:GET /tags/tag-name/media/recent
获取最近标记的媒体列表。请注意,此媒体是按使用此标签标记媒体的时间排序的,而不是按发布的顺序排序的。在分页响应中使用 max_tag_id 和 min_tag_id 参数对这些对象进行分页。