TwitterException: unable to log in

I have a Twitter login button in my application.

Yesterday I log in to Twitter, it works fine.

But today it is not. I am attaching my journal to the same issue.

01-15 14:47:44.812: W/System.err(11435): 403:The request is understood, but it has been 
                    refused. An accompanying error message will explain why. This code 
                    is used when requests are being denied due to update limits 
                    (https://support.twitter.com/articles/15364-about-twitter-limits-
                    update-api-dm-and-following).

01-15 14:47:44.812: W/System.err(11435): Relevant discussions can be found on the 
                    Internet at:
01-15 14:47:44.812: W/System.err(11435): http://www.google.co.jp/search?q=10f5ada3 or
01-15 14:47:44.812: W/System.err(11435): http://www.google.co.jp/search?q=e574402b
01-15 14:47:44.812: W/System.err(11435): TwitterException{exceptionCode=[10f5ada3- 
                    e574402b], statusCode=403, message=null, code=-1, retryAfter=-1, 
                    rateLimitStatus=null, version=3.0.3}ent.java:828)
011514:47:44.812:W/System.err(11435):
               twitter4j.internal.http.HttpClientImpl.request(HttpClientImpl.java:177)

01-15 14:47:44.812: W/System.err(11435):    at   
             twitter4j.internal.http.HttpClientWrapper.post(HttpClientWrapper.java:98)
01-15 14:47:44.812: W/System.err(11435): 
  attwitter4j.auth.OAuthAuthorization.getOAuthRequestToken(OAuthAuthorization.java:122) 



01-15 14:47:44.812: W/System.err(11435): at  
    twitter4j.auth.OAuthAuthorization.getOAuthRequestToken(OAuthAuthorization.java:104)

01-15 14: 47: 44,812: W / System.err (11435): at
               twitter4j.TwitterBaseImpl.getOAuthRequestToken (TwitterBaseImpl.java:281)

+4
source share
3 answers

Update your twitter4j libraryto twitter4j-core-3.0.5.jar. I ran into the same problem and solved it by updating the library.

+12
source

This error also occurs if you do not use SSL for login (from January 14).

Have a look at the REST API regarding 403 error code? for a possible solution.

+2
source

All Articles