Reputation: 93
Does anybody know how to retrieve and Instagram picture? I mean like users fill in the link on my site of the picture e.g.http://instagram.com/p/RTqrWXkEme/ (does not exist just example) and then I show them the picture only
I'm sure this works via Instagram's API but I have no idea how..
Kind regards
Upvotes: 0
Views: 2612
Reputation: 3403
You are probably looking for this API endpoint.
Given your example it would be:
http://instagr.am/p/RTqrWXkEme/media/?size=t
Edit: As the original photo is just an example here is a real picture:
https://instagr.am/p/ay2uOUwYJv/media/?size=t
Oh and btw you can control the size of the image:
One of t (thumbnail), m (medium), l (large). Defaults to m.
https://instagr.am/p/ay2uOUwYJv/media/
https://instagr.am/p/ay2uOUwYJv/media/?size=l
Upvotes: 5