2

I have a tricky question: How would it be possible to retrieve tweets and facebook posts information with specific hashtag for example with only client-side code (html or javascript)?

Thanks in advance!

goodguytrigu
  • 456
  • 2
  • 13
  • 2
    Have you made a research? – zerkms May 06 '14 at 03:37
  • Yes I did @zerkms. Apparently now we have to use OAuth authentification, I created an app to make secure request to twitter and facebook apis. I tried some basic resquests but nothing is working and all this seems a bit blurred to me.. – goodguytrigu May 06 '14 at 03:41
  • well, it must work for facebook (since there is FB JS API) and I don't see how it would be possible to do with twitter. – zerkms May 06 '14 at 03:45
  • seems is discontinued http://stackoverflow.com/a/13056877/1197775 – sites May 06 '14 at 03:51

1 Answers1

1

You could use the public post search of Facebook to do this as descried here: Need help on employing Graph Search parameters for hashtag query on facebook

You can use the JavaScript SDK to do this on the client side. There was a similar question like yours today as well: Need help on employing Graph Search parameters for hashtag query on facebook

For Twitter, you could use the

GET search/tweets

endpoint as descibed here: https://dev.twitter.com/docs/api/1.1/get/search/tweets or use a Search Widget:

https://twitter.com/settings/widgets/new/search

Community
  • 1
  • 1
Tobi
  • 31,405
  • 8
  • 58
  • 90