Using the Twitter API V1.1 is it possible to just retrieve the photos that a user has posted?
I can see that one way to do this is to pull a user's timeline with include_entities=true
and search for the photos that way. But that seems like an extremely cumbersome way around, and prone to problems.
For example, we can pull the last 15 tweets and display them, and we know, for sure, that we will always get 15 tweets.
But for just photos, if we were to even pull 100 tweets at a time, we can not be guaranteed that it will contain, say, 15 photos, or even that it will contain any photos at all.
So perhaps I'm clutching at straws here hoping that there is some way to do this that the Twitter API docs and Dev Discussions doesn't know.
I'm looking for a PHP example.