我希望在用户关注某人或喜欢帖子后执行其他功能。
instagram Follow Button或Like Button是否返回true或false之类的任何值。所以我可以在之后执行任何操作吗?
还是有另一种选择吗?
答案 0 :(得分:0)
根据Instagram API文档(https://instagram.com/developer/endpoints/likes/#post_likes),成功响应的JSON响应应该如下所示。
{
"meta": {
"code": 200
},
"data": null
}
看起来并没有返回任何数据。但是,您可以像这样使用内置的AJAX Success回调。
$.ajax({
type: 'POST',
url: 'your url here',
data: 'your data here in the form of an object',
//The success function will operate if the server compeletes is task,
//or in this case, if the post is liked
success: function(){
}
});