我们使用Phil Sturgeons cool Restful API framework for codeigniter构建了我们的应用程序接口,它已经为生产做好了准备,并作为我们移动应用程序实现的一部分。
在Java中使用API时,我们有一个问题
httpConnection = (HttpConnection) Connector.open(url, Connector.READ, true);
// Set content type by given parameter......
httpConnection.setRequestProperty("Accept", contentType);
httpConnection.setRequestProperty("User-Agent", "Profile/MIDP-2.0 Configuration/FCLDC-1.0");
httpConnection.setRequestProperty("Content-Type", contentType);
httpConnection.setRequestProperty("TK-API-KEY", UrlFactory.TK_API_KEY);
// httpConnection.setRequestProperty("Model",
// StyleUtil.getDeviceModel());
if (httpConnection.getResponseCode() == 302)
{
String redirectUrl = httpConnection.getHeaderField("Location");
httpConnection = (HttpConnection) Connector.open(redirectUrl, Connector.READ_WRITE, true);
}
if (httpConnection.getResponseCode() == HttpConnection.HTTP_OK)
{
io = httpConnection.openInputStream();
int ch;
while ((ch = io.read()) != -1)
{
bo.write(ch);
}
}httpConnection.getResponseCode()无法获取状态代码并返回格式错误的异常。我们的API服务器是NGINX。
发布于 2013-03-12 13:45:33
如果头部字段设置不正确,则会抛出MalformedException。请使用不同的报头和不同的用户代理进行检查。尝试使用httpConnection.setDoOutput(true);
https://stackoverflow.com/questions/12178584
复制相似问题