Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to sort posts from a facebook page by category or tags. Is there any way I can post and retrieve data sorted by categories? This is my concept:

I want to post with a tag name "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);
});

...and to sort all posts with "tag": "general_discussion", I do this:

$.get('https://graph.facebook.com/fb_page/feed/?tag=general_discussions&access_token='+sess.accessToken,function(resp){
    console.log(resp);
});

Is there a way on facebook to do somethingt like that?

share|improve this question
No, Facebook does not offer any “tagging” functionality of that kind. – CBroe Sep 22 '12 at 12:51
Is there any other thing i can do to sort the posts of a page by category? – Jhon Andrew Sep 23 '12 at 15:36

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.