1

This question has already been asked there : Get Tweets with Pictures using twitter search api

But it's obsolete now : the new Twitter API doesn't allow the answer provided.

In a nutshell : I'm trying, in Ajax, to retrieve tweets with a particular hashtag that contains a media (image).

Community
  • 1
  • 1
enguerranws
  • 8,087
  • 8
  • 49
  • 97

1 Answers1

1

It rather depends on the source of the images that you want to find. You are best of searching for the URL of the image directly.

If you're looking for images uploaded directly to Twitter with the hashtag "#nice", do a search for twimg%20%26%20%23nice (that's "twimg & #nice").

You could also include flickr or any other image sharing service.

Terence Eden
  • 14,034
  • 3
  • 48
  • 89
  • 1
    Yes, that seems to be the only clever way to do this. For test purposes, I tried 'myquery filter:images' as my q param to the API. Works fine too. – enguerranws Nov 20 '14 at 10:22