我正在使用诺基亚SDK 2.0(J2ME)为S40开发应用程序,可以通过REST API连接到服务器。
然而,有一些API(使用方法POST)导致错误403 - 禁止。我检查了apigee站点中的API,具有完全相同的标题和正文,结果出乎意料地成功(200 OK响应)。遗憾的是,由于我的客户保密,我无法共享该网址。
但我正在使用这个功能:
public static String sendHTTPPOST(String url, String parameter, String cookie) {
HttpConnection httpConnection = null;
DataInputStream dis = null;
DataOutputStream dos = null;
StringBuffer responseMessage = new StringBuffer();
try {
httpConnection = (HttpConnection) Connector.open(url, Connector.READ_WRITE);
httpConnection.setRequestMethod(HttpConnection.POST);
httpConnection.setRequestProperty("User-Agent", "Profile/MIDP-1.0 Configuration/CLDC-1.0");
httpConnection.setRequestProperty("Content-Type", "application/json");
httpConnection.setRequestProperty("Cookie", "eid="+cookie);
httpConnection.setRequestProperty("Content-length", "" + parameter.getBytes().length);
dos = httpConnection.openDataOutputStream();
byte[] request_body = parameter.getBytes();
for (int i = 0; i < request_body.length; i++) {
dos.writeByte(request_body[i]);
}
dos.flush();
dis = new DataInputStream(httpConnection.openInputStream());
int ch;
while ((ch = dis.read()) != -1) {
responseMessage.append((char) ch);
}
} catch (Exception e) {
e.printStackTrace();
responseMessage.append("ERROR");
} finally {
try {
if (httpConnection != null) {
httpConnection.close();
}
if (dis != null) {
dis.close();
}
if (dos != null) {
dos.close();
}
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
return responseMessage.toString();
}
该参数是POST正文的一部分,该cookie是POST标题的一部分。 它始终导致403错误。
是否有可能使代码在apigee(web)和我的应用程序(j2me应用程序)上产生不同的响应? 如果是这样,如何解决这个问题?
将不胜感激任何帮助。 :)
答案 0 :(得分:0)
我得到了答案,我应该在会议上查看更多内容。我忘了编码了。