'Get instagram user stories

In my app, user atuhenticates with instagram, and we get an access token!

This is good, and we can access all regular posts. But it seems so unclear how to access the user's stories.

this works for posts:

 'https://graph.instagram.com/$userID/media?fields=id,caption&access_token=$accessToken'

Ive tried this for stories:

 'https://graph.instagram.com/$userID/stories?fields=id,caption&access_token=$accessToken'

 'https://graph.instagram.com/$userID/stories&access_token=$accessToken'


Solution 1:[1]

You can use the Graph API in order to list User Stories as mentioned here.

GET graph.facebook.com
    /17841405822304914/stories

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1