Instagram API: How to get all user media? -
in general need user media. user has more 250 photos. i /users/1/media/recent/?access_token=...&count=250 but returns 20 photos. maybe instagram has limit getting media. if is, response has pagination solve it. there max id photo. how know first (min) id photo paginate then? you're right, instagram api return 20 images per call. you'll have use pagination feature. if you're trying use api console. you'll want first allow api console authenticate via instagram login. you'll want select oauth2 under authentication dropdown. once authenticated, use left hand side menu select users/{user-id}/media/recent endpoint. sake of post {user-id} can replace self. use account retrieve information. at bare minimum what's needed endpoint. once send, you'll json returned you. @ top of returned information after server info, you'll see pagination portion next_url , next_max_id. next_max_id you'll use parameter query. remember max_id ...