我对bluemix mobilefirst paltform相当新,并且我需要使用来自android客户端的一些参数进行发布请求。我搜索了文档,但无法找到所需的文档。
答案 0 :(得分:2)
显然,发送POST请求的方法不止一种,我将概述其中一种。
为了查看端到端场景,您可以使用HelloTodo Android示例,该示例使用基于node.js的Bluemix托管后端 - https://github.com/ibm-bluemix-mobile-services/bms-samples-android-hellotodo。
此Android示例中的POST请求是使用Request类进行的,该类是Bluemix Mobile Services SDK的一部分 - https://github.com/ibm-bluemix-mobile-services/bms-samples-android-hellotodo/blob/master/helloTodo/app/src/main/java/com/ibm/hellotodo/MainActivity.java#L255
服务器端实现取决于您选择使用的框架。最流行的nodejs框架可能是expressjs - http://expressjs.com/en/4x/api.html#app.post.method