我正在尝试按类别或标签对Facebook页面中的帖子进行排序。有什么办法可以发布和检索按类别排序的数据吗?这是我的概念:
我想发布标签名称“general_discussions”:
$.post('https://graph.facebook.com/fb_page/feed/?access_token='+sess.accessToken,{
"message": "The content of the post",
"tag": "general_discussions" //just an example
},function(resp){
console.log(resp);
});
...并使用“tag”排序所有帖子:“general_discussion”,我这样做:
$.get('https://graph.facebook.com/fb_page/feed/?tag=general_discussions&access_token='+sess.accessToken,function(resp){
console.log(resp);
});
在Facebook上有办法做那样的事吗?