我可以使用Public API找到Instagram Stories吗?

时间:2016-08-08 08:56:36

标签: instagram-api

此处发布:http://dev.haufe.com/node-js-primer-for-old-school-developers/

没有通过API提供故事的说明。

3 个答案:

答案 0 :(得分:5)

没有公共API,但您可以通过使用您的帐户登录Instagram.com并将此代码粘贴到控制台中来获取故事json数据,它将在控制台中输出数据

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();

(你必须从instagram.com和用户登录)

答案 1 :(得分:2)

现在可用,但仅在用户授权您的应用程序时可用。用户的帐户还必须是Instagram企业帐户。

https://developers.facebook.com/docs/instagram-api/reference/user/stories

答案 2 :(得分:0)

继续运行@krisrak的脚本。 当您使用Chrome浏览器并安装扩展名为“ Alec Garcia的Chrome IG Story”时,可以运行它,然后执行以下步骤: 1.浏览https://i.instagram.com/api/v1 2. F12打开DevTool窗口,转到控制台选项卡 3.运行上面的@krisrak脚本。

对不起,亚历克·加西亚(Alec Garcia)宣布他从Chrome网上删除了Chrome IG Story扩展,详情请参见his twitter。 因此,如果您已安装,则可以使用@krisrak帮助。