Facebook API - Pulling posts with HashTag

0

I'm having to apply the facebook API on a site by pulling the posts on a page, I wonder if there's any way to pull only posts containing a HashTag, does the API allow this?

HOW I'M PULLING

In this case, it could be seen working through this link:

  

link ********* / posts? access_token = *********** ** & fields = message, full_picture, link

function fbFeed(){

     var pagina = "***********";
     var token = "************";
     var campos = "fields=message,full_picture,link";
     var limite = "4"

     var url = "https://graph.facebook.com/"+pagina+"/posts?" +
               "access_token="+token+"" +
               "&limit="+limite+"&"+campos+"&callback=?";
    
asked by anonymous 02.02.2017 / 20:24

1 answer

0

Can not ...

Facebook is Shutting Down Access to Hashtags in its API (April 2015)

Explorer no longer works to search for hashtags, as suggested here: Facebook API search for hashtag - Stack Overflow .

And all this was to do generic search for hashtag. In the official documentation for searching the information for a particular page, there is nothing about hashtags: Page - Graph API Reference

    
17.05.2017 / 09:31