Does Instagram api have an endpoint that returns user's saved collections? If not, is there a different way i can get the data?
Instagram Platform api is deprecating. How good it is to use instagram graph api for non-business use?
If using javascript you can use: https://github.com/dilame/instagram-private-api
some example code (you'd need to be authenticated):
const IG_API = require('instagram-private-api');
const ig = new IG_API.IgApiClient();
// get saved posts
const savedFeed = ig.feed.saved();
const mySavedPosts = await Promise.all([await savedFeed.items(), await savedFeed.items()]);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With