试试这个有两种方法:
First Use Facebook Graph API:
https://graph.facebook.com/search?q=%23YOU-HASH-VALUE &limit=10000 &access_token=YOUR-ACCESS-TOKEN
Second way is read Stream Table via FQL:
但它不会给你公共数据。它只适用于用户或朋友,并读取您需要 ' read_stream
' 权限的流表
// 完整用户数据的 FQL 查询
SELECT
action_links, actor_id, app_data, app_id, attachment,
attribution, call_to_action, claim_count, comment_info,
created_time, description, description_tags, expiration_timestamp,
feed_targeting, filter_key, impressions, is_exportable,
is_hidden, is_popular, is_published, like_info, message,
message_tags, parent_post_id, permalink, place, post_id,
privacy, promotion_status, scheduled_publish_time, share_count,
share_info, source_id, subscribed, tagged_ids, target_id,
targeting, timeline_visibility, type, updated_time, via_id,
viewer_id, with_location, with_tags, xid, likes
FROM stream
WHERE (source_id=me() ) AND strpos(lower(message),lower('#evanna')) >=0
打开 ' https://developers.facebook.com/tools/explorer/
' 并添加 ' search?q=%23hashtag-string
' 使用有效的 access_token 和 ta :)
More help see this attached Image