3
我試圖通過標記名獲取最近的圖片。在API Doc我發現我需要發送請求https://api.instagram.com/v1/tags/{tag-name}/media/recent?access_token=ACCESS-TOKEN
Instagram API:如何通過標記名稱獲取圖片
我使用JavaScript(Node.js的),但這不是JavaScript的具體問題,這樣你就可以跳過代碼。
說明: access_token有效,我檢查過。
這裏是我的代碼:
var tag = 'nexus5x';
var url = 'https://api.instagram.com/v1/tags/'+ tag +'?access_token=' + access_token;
request({
url: url,
method: 'GET'
}, function(error, response, body){
if(error) {
console.log(error);
} else {
console.log(body);
}
console.log('done');
});
所以它需要max_tag_id
或min_tag_id
。但我沒有最大/最小ID,因爲我第一次請求和分頁對象是空的