用户在Instagram上成功关注我之后,我正尝试在我的网站上启用下载按钮。我在我的页面上放置了一个Instagram关注按钮。
有没有办法跟踪用户是否已成功关注我?我找不到开发者页面上记录的任何回调函数。
答案 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