Facebook #Hashtag: How to retrive feed by Hastags?

2019-03-22 05:36发布

As we can get feeds of specific user or fan page, I wanted to know that how can I get feeds from specific Hashtag like in twitter by fql or Graph API ?

I am using Facebook SDK 3.5.2

Thanks.

1条回答
等我变得足够好
2楼-- · 2019-03-22 06:13

As far as I can tell, searching specific posts by hashtags is currently unavailable. You can still find posts regarding a #hashtag querying a user's stream for a specific message:

SELECT message 
FROM stream 
WHERE 
(source_id IN (SELECT uid2 FROM friend WHERE uid1 = me()) OR source_id=me()  )
AND strpos(lower(message),lower('#hashtag')) >=0
查看更多
登录 后发表回答