I am grabbing a a users twitter feed, and then cache it for 5 min. So I only actually connect to twitter 12 times an hour...
But I still get the message
Rate limit exceeded. Clients may not make more than 150 requests per hour.
back in my feed. I assume that this is because I am on a shared server and its that servers IP that the limit is based on.
Previously we could just set the user/pass in our curl option
curl_setopt($ch,CURLOPT_USERPWD,$username.':'.$password);
And this would put the 150 limit on that user instead of the shared server IP, But twitter no longer supports basic auth in favor of oAuth..
I dont want to have to set up a whole "app" with key/secret/token etc.. that seem like way to much overkill for simply retreating a user feed.. Are there an other options?