Hashtag search in Facebook API

[亡魂溺海] 提交于 2019-11-29 06:59:53

Since April 30th and the introduction of Facebook api v2.0, public Post search is no longer available and will return :

{
  "error": {
    "message": "(#11) Post search has been deprecated", 
    "type": "OAuthException", 
    "code": 11
  }
}

According to Facebook changelog v1.0 will continue to work until April 30th, 2015. As the search endpoint is back in the v2 doc, there is hope that they will reconsider the deprecation.

The search endpoint is a fulltext search, you just have to encode the hash (%23) and run your query through it :

Facebook API explorer :

You have to select v1.0 or Unversioned in the API version selector (on the top right)

https://graph.facebook.com/search?type=post&q=%23the_hash_tag

Curl or whatever :

Just remove /v2.0/ from the url and call the unversioned API

https://graph.facebook.com/search?access_token=YOUR_TOKEN&type=post&q=%23the_hash_tag

There is currently no API for the hashtags feature on Facebook There is a posts search function which will return some posts with a certain hashtag if you use that hashtag as the search string. But it will ignore the # tag. There is a comment on one of the sites which says "you can change the # with the hex value from the ascii table (%23) to search for hashtags. but it will only find tags, created by the facebook homepage or official facebook applications." Not sure how valid, you could try it like this https://graph.facebook.com/search?q=%23myhashtag https://graph.facebook.com/search?q=%23myhashtag

There is no hashtag API available for Facebook and using %23 for #(hash) is the only solution as of now which already everyone here has commented upon.

I'm not too sure about FQL being deprecated in near future as I could see different opinions across the board.

As I am understanding you would use Keyword Insights API Though as mentioned on the following link

Access to the Keyword Insights API is restricted to a limited set of media publishers and usage requires prior approval by Facebook. You cannot apply to use the API at this time.

https://developers.facebook.com/docs/keyword_insights/

Take note on the mention of hashtag searching in the "best practices" section.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!