Can I find Instagram Stories using the Public API? -
released here: http://blog.instagram.com/post/148348940287/160802-stories
no note of stories being available via api.
there no public api, can story json data going instagram.com login account , paste code in console, output data in console
var xhttp = new xmlhttprequest(); xhttp.onreadystatechange = function() { if (xhttp.readystate == 4 && xhttp.status == 200) { console.log(xhttp.responsetext); } }; xhttp.open("get", "https://i.instagram.com/api/v1/feed/reels_tray/", true); xhttp.send();
(you have instagram.com , user logged in)
Comments
Post a Comment