我正在尝试按类别或标签对来自 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上有没有办法做这样的事情?