用户在我的网站上成功跟踪我之后如何调用回调函数

时间:2015-11-14 12:58:28

标签: javascript jquery instagram instagram-api

用户在Instagram上成功关注我之后,我正尝试在我的网站上启用下载按钮。我在我的页面上放置了一个Instagram关注按钮。

有没有办法跟踪用户是否已成功关注我?我找不到开发者页面上记录的任何回调函数。

1 个答案:

答案 0 :(得分:0)

好吧,我在Instragram API文档中看到this section它实际上适用于您的意图。

它可以为所有关注者提供这种JSON对象。

    {
    "data": [{
        "username": "kevin",
        "profile_picture": "http://images.ak.instagram.com/profiles/profile_3_75sq_1325536697.jpg",
        "full_name": "Kevin Systrom",
        "id": "3"
    },
    {
        "username": "instagram",
        "profile_picture": "http://images.ak.instagram.com/profiles/profile_25025320_75sq_1340929272.jpg",
        "full_name": "Instagram",
        "id": "25025320"
    }]
}

现在,您只需要获得有效的ACCES-TOKEN。请参考: How to get an Instagram Access Token