如何在 Android 中使用 WLResourceRequest 创建多部分请求
How to create a Multipart request using WLResourceRequest in Android
我创建了一个 Java 适配器,它接受多部分表单数据。现在我想从我的本地 Android 应用程序创建一个多部分请求。但是我无法弄清楚如何在 MobileFirst API 中使用 WLResourceRequest class 构造多部分请求。在这个方向上的任何例子或指针将不胜感激。
提前致谢!
您无需通过客户端的 WLResourceRequest 执行此操作。
IMO 你应该做的是类似这样的事情:
// Create the request to send
final HttpPost post = new HttpPost("your-destination");
// Construct the body of the object...
...
...
// Send the request and get the response
HttpResponse response = client.execute(post);
如果涉及到安全问题,您可能还想阅读以下文档(想想 POST 而不是 GET):http://www-01.ibm.com/support/knowledgecenter/SSHS8R_7.0.0/com.ibm.worklight.dev.doc/dev/c_custom_request_to_resource_java.html?lang=en
我创建了一个 Java 适配器,它接受多部分表单数据。现在我想从我的本地 Android 应用程序创建一个多部分请求。但是我无法弄清楚如何在 MobileFirst API 中使用 WLResourceRequest class 构造多部分请求。在这个方向上的任何例子或指针将不胜感激。 提前致谢!
您无需通过客户端的 WLResourceRequest 执行此操作。
IMO 你应该做的是类似这样的事情:
// Create the request to send
final HttpPost post = new HttpPost("your-destination");
// Construct the body of the object...
...
...
// Send the request and get the response
HttpResponse response = client.execute(post);
如果涉及到安全问题,您可能还想阅读以下文档(想想 POST 而不是 GET):http://www-01.ibm.com/support/knowledgecenter/SSHS8R_7.0.0/com.ibm.worklight.dev.doc/dev/c_custom_request_to_resource_java.html?lang=en