0

我正在尝试使用 twitter 4j 获取 authtoken 我将其放入 try and catch 但它始终捕获此错误 twitter4j.TwitterException: Not trust server certificate here 这是我的功能

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 回答