I'm trying to learn how to use file_get_contents()
in PHP. For this, I'm putting together a tool that searches a user's tweets for any word and indicates the number of repetitions of that word.
My problem is that when I use file_get_contents()
, I get access to only the last 20 tweets of a user. Do you know any way you can open all tweets so that you can use file_get_contents()
and have access to a string with tweets?
I'm preferring to use the API only in the latter case, so I'm looking for other alternatives.
Thank you for your attention.