Search for posts on Facebook by Hashtag in JSON format

1

How to bring facebook public posts for a given hashtag, for example #OlaWorld. I need the postings to come in JSON format.

    
asked by anonymous 20.07.2015 / 20:42

1 answer

1

Facebook does not provide search capabilities for tag , the only type of posts found in documentation , is based on ID:

/* make the API call */
FB.api(
    "/{post-id}",
    function (response) {
      if (response && !response.error) {
        /* handle the result */
      }
    }
);

Where {post-id} should be the post ID.

    
20.07.2015 / 22:46