Comment obtenir le poste d'Instragram à l'aide de l'API

//Get access token from facebook developer 
https://graph.instagram.com/me?fields=id,username&access_token=IGQVJ...

//2) After getting id of each post we can get all detail with that id
GET /{media-id}?fields={fields}&access_token={access-token}
curl -X GET \
  'https://graph.instagram.com/17895695668004550?fields=id,media_type,media_url,username,timestamp&access_token=IGQVJ...'
Shirshak kandel