I wrote a small java program to upload profile photos of friends and followers from Twitter. But I get an error because only 150 requests per hour are allowed per IP address.
exact error:
twitter4j.TwitterException: 400:The request was invalid. An accompanying error message will explain why. This is the status code will be returned during rate limiting.
<?xml version="1.0" encoding="UTF-8"?>
<hash>
<request>/users/show/92715794.xml</request>
<error>Rate limit exceeded. Clients may not make more than 150 requests per hour.</error>
</hash>
Is there any way around this problem ... ??? Please, help...
source
share