skip to Main Content

I use the Facebook/Instagram Official API for get the list of the IG Stories.

Now I have a array of ID but, can I use that for get the url of the Image ?

Facebook Tool

2

Answers


  1. You can send a ‘Field’ parameter with your request

    endpointParams[‘fields’] = ‘id,media_url,permalink,media_type,timestamp’ # fields to get back

    Login or Signup to reply.
  2. To get the url of the Video story, call each media-id using thumbnail_url as field, like this:

    {media-id}/?fields=thumbnail_url
    

    But if it is an Image story, the endpoint would be

    {media-id}/?fields=media_url
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search