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でそのようなことをする方法はありますか?