0

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;
    }
4

1 に答える 1

0

2.1で実行していたエミュレータを変更し、2.2に変更してからSystem.setProperty("twitter4j.http.useSSL", "false");、Twitterのインスタンスを作成する前にこの行を追加したところ、動作しました

于 2012-07-11T22:12:50.517 に答える