Twitter 4j を使用して authtoken を取得しようとしていますが、try and catch に入れましたが、常にこのエラー twitter4j.TwitterException: Not trusted server certificate here it is my functionをキャッチします
public String BeginAuthorization()
{
try
{
if(null==currentRequestToken)
{
currentRequestToken=twitter.getOAuthRequestToken();
}
return currentRequestToken.getAuthorizationURL();
}
catch (TwitterException e) {
// TODO: handle exception
e.printStackTrace();
}
return null;
}