i got a problem.
Relevant discussions can be found on the Internet at:
http://www.google.co.jp/search?q=a30565d7 or
http://www.google.co.jp/search?q=000000bb
TwitterException{exceptionCode=[a30565d7-000000bb 6918c4b6-00534ac2 6918c4b6-00534a98 6918c4b6-00534a98 6918c4b6-00534a98], statusCode=-1, message=null, code=-1, retryAfter=-1, rateLimitStatus=null, version=3.0.5}
Bfore, sometimes, i was successful.
but now never, still have problem,
I didn’t change ConsumerKey, ConsumerSecret,
what should I do ?
=== this is my code .===
AccessToken accessToken = null;
ConfigurationBuilder builder = new ConfigurationBuilder();
builder.setOAuthConsumerKey(getConsumerKey(appName));
builder.setOAuthConsumerSecret(getConsumerSecret(appName));
Configuration config = builder.build();
OAuthAuthorization oauth = new OAuthAuthorization(config);
accessToken = oauth.getOAuthAccessToken(uid,d_password);
public AccessToken getOAuthAccessToken(String screenName, String password) throws TwitterException {
try {
String url = conf.getOAuthAccessTokenURL();
if (0 == url.indexOf("http://")) {
// SSL is required
// @see https://dev.twitter.com/docs/oauth/xauth
url = "https://" + url.substring(7);
}
oauthToken = new AccessToken(http.post(url, new HttpParameter[]{
new HttpParameter("x_auth_username", screenName),
new HttpParameter("x_auth_password", password),
new HttpParameter("x_auth_mode", "client_auth")
}, this));
return (AccessToken) oauthToken;
} catch (TwitterException te) {
throw new TwitterException("The screen name / password combination seems to be invalid.", te, te.getStatusCode());
}
}