does anyone know can I get photos from instagram user without using access token. It doesn\'t make sense that I see photos on http://instagram.com/{user} but can not get t
There are 2 ways to get data
1) client side - you need to give client_id
2) server side - you need to give access_token
https://api.instagram.com/v1/users/#{instagram_id}/media/recent/?access_token=#{@token}"
this will give you the recent uploaded photo of that user whose instagram_id is given...