5

Any one have any ideas on how to accomplish this?

I have tried

https://graph.facebook.com/search?q=%22%23apple%22
https://graph.facebook.com/search?q=%23apple
https://graph.facebook.com/search?q#apple

which does not work.

To be clear the results should only have posts that contain #apple not "apple".

Christophe
  • 4,798
  • 5
  • 41
  • 83
jlarry
  • 430
  • 5
  • 18

3 Answers3

1

Facebook says this is not supported at this time: https://developers.facebook.com/x/bugs/313941462054417/

0

if you're trying to get the #hashtags from Facebook, currently, there is no api for this. and even if there were- the posts are not intermediate, they are being cached. you won't see the most recent hashtag from a person who's not in your friendlist right away, this will take a long time to appear in the hashtag search

user151496
  • 1,849
  • 24
  • 38
0

I've read too that it's not supported but,

trying the second line of jlarry

https://graph.facebook.com/search?q=%23apple

in Graph API Explorer, it works. obviously the query is on the posts set as public.

so the query could be something like this

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

for further ops check https://developers.facebook.com/docs/graph-api/using-graph-api/

StarsSky
  • 6,721
  • 6
  • 38
  • 63