使用retrofit2

时间:2018-03-06 03:34:44

标签: android xml post retrofit2

我在使用Retrofit发布xml请求时遇到问题。 以下是我的帖子xml请求格式:

    <GetRequest>
        <osType>02</osType>
    </GetRequest>

这是我的改造服务:

@Headers({"Content-Type: text/xml; charset=utf-8"})
@POST("/mobileapi")
Call<Response> request(@Body RequestBody requestBody);

这就是我如何称呼对象

String request = "<GetRequest>\n" + "    <osType>02</osType>\n" + "
</GetRequest>";
RequestBody requestBody = RequestBody.create(MediaType.parse("text/xml"),request);
final Call<Response> call = request.request(requestBody);

我不知道如何解决问题以避免失败回复...需要有人帮助我解决这个问题。

0 个答案:

没有答案