Appengine上的Twilio客户端库

时间:2012-04-29 03:00:48

标签: java google-app-engine https twilio

我正在尝试在appengine上使用Twilio的java客户端库。它似乎不按原样运行,并且需要对客户端lib进行一些更改。我做了以下更改,但不起作用:

public TwilioRestClient(String accountSid, String authToken, String endpoint) {

    validateAccountSid(accountSid);
    validateAuthToken(authToken);

    this.accountSid = accountSid;
    this.authToken = authToken;

    if ((endpoint != null) && (!endpoint.equals(""))) {
        this.endpoint = endpoint;
    }



/* origial code
 *  ThreadSafeClientConnManager connMgr = new ThreadSafeClientConnManager();
 *      connMgr.setDefaultMaxPerRoute(10);
 *      this.httpclient = new DefaultHttpClient(connMgr);
 */

 //my changes start HERE
    SchemeRegistry schemeRegistry = new SchemeRegistry(); 
    schemeRegistry.register(new Scheme("https", SSLSocketFactory.getSocketFactory(), 443)); 
    BasicHttpParams params = new BasicHttpParams(); 

    ThreadSafeClientConnManager connMgr = new  ThreadSafeClientConnManager(params,schemeRegistry);
    //my changes END HERE

    this.httpclient = new DefaultHttpClient();

    httpclient.getParams().setParameter("http.protocol.version",
            HttpVersion.HTTP_1_1);
    httpclient.getParams().setParameter("http.socket.timeout",
            new Integer(CONNECTION_TIMEOUT));
    httpclient.getParams().setParameter("http.connection.timeout",
            new Integer(CONNECTION_TIMEOUT));
    httpclient.getParams().setParameter("http.protocol.content-charset",
            "UTF-8");

    this.authAccount = new Account(this);
    this.authAccount.setSid(this.accountSid);
    this.authAccount.setAuthToken(this.authToken);

}

这使它可以编译并运行,但是我得到了这个异常: 引起:org.apache.http.HttpException:Scheme'https'未注册。 在提出请求时。请求在此(未更改)代码中:

public TwilioRestResponse request(String path, String method,
        Map<String, String> vars) throws TwilioRestException {

    HttpUriRequest request = setupRequest(path, method, vars);

    HttpResponse response;
    try {
        response = httpclient.execute(request);
        HttpEntity entity = response.getEntity();

        Header[] contentTypeHeaders = response.getHeaders("Content-Type");
        String responseBody = "";

        if (entity != null) {
            responseBody = EntityUtils.toString(entity);
        }

        StatusLine status = response.getStatusLine();
        int statusCode = status.getStatusCode();

        TwilioRestResponse restResponse = new TwilioRestResponse(request
                .getURI().toString(), responseBody, statusCode);

        // For now we only set the first content type seen
        for (Header h : contentTypeHeaders) {
            restResponse.setContentType(h.getValue());
            break;
        }

        return restResponse;

    } catch (ClientProtocolException e1) {
        throw new RuntimeException(e1);
    } catch (IOException e1) {
        throw new RuntimeException(e1);
    }
}

有没有人用过twilio的java的appengine?我知道它只是一个使用基本身份验证的XML或JSON的RESTful请求。我本来希望使用客户端库而不是花时间自己编写请求编码...任何想法?

2 个答案:

答案 0 :(得分:3)

最新的Twilio Java客户端库依赖于与appengine不兼容的外部库(Apache HttpClient)。 Twilio的原始java客户端代码只使用了java.net.HttpURLConnection并且没有外部依赖。

我已将这个旧的Twilio java客户端代码添加到twilio4j(有几个错误修复)。我在制作中使用它。

TODO:应该为官方的twilio-java项目提供补丁,这是一个非常友好的。

答案 1 :(得分:1)

基本问题是Twilio-Java正在使用Apache HttpClient连接到Twilio的服务器,并且开箱即用,它与Google AppEngine不兼容。

可以使用Apache HttpClient on Google AppEngine。您必须get the source code并根据这些说明修改Twilio-Java客户端库。