All of a sudden from last evening I am getting below error.
Server returned HTTP response code: 403 for URL: http://api.twitter.com/1.1/statuses/update.json Relevant discussions can be found on the Internet at: http://www.google.co.jp/search?q=b2b52c28 or http://www.google.co.jp/search?q=10981ac7 TwitterException{exceptionCode=[b2b52c28-10981ac7 4ef6906d-026b39e1 4ef6906d-026b39df], statusCode=-1, message=null, code=-1, retryAfter=-1, rateLimitStatus=null, version=3.0.3}
Any idea? Thanks
Same here. My application stopped working yesterday, after running for two years without any problems.
It’s very likely you don’t have SSL enabled for you requests: [node:24239]
Thanks I got it fixed by upgrading my java library from 3.0.3 to 3.0.5
Hi all, fixed it by adding
ConfigurationBuilder cb = new ConfigurationBuilder(); cb.setUseSSL(true);
i have replaced the jar file from twitter4j3.0.3 to 3.0.5 still i am getting 403 as response!! can anybody help me out?
Thanks!
Thanks, it worked for me too.