Answers for "how to get post of instragram using api"

2

how to get post of instragram using 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...'
Posted by: Guest on February-10-2022

Code answers related to "how to get post of instragram using api"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language