public RequestToken(String token, String tokenSecret) { super(token, tokenSecret); conf = ConfigurationContext.getInstance(); }
RequestToken(String token, String tokenSecret, OAuthSupport oauth) { super(token, tokenSecret); conf = ConfigurationContext.getInstance(); this.oauth = oauth; }
RequestToken(HttpResponse res, OAuthSupport oauth) throws TwitterException { super(res); conf = ConfigurationContext.getInstance(); this.oauth = oauth; }