1

我正在尝试使用 RoyalPay SDK 创建订单并进行支付宝付款。响应代码是 200,但我无法解析 JSON 作为响应。

我该如何解决这个问题?

我创建 api 请求的代码:

    interface RoyalPayApi {

    @FormUrlEncoded
    @Headers("Accept: application/json", "Content-Type: application/json")
    @PUT("/api/v1.0/gateway/partners/{partner_code}/app_orders/{order_id}")
    fun createRoyalPaySDKOrder(@Path(value = "partner_code", encoded = true) partner_code: String, @Path(value = "order_id", encoded = true) order_id: String,
                               @Query("time") time: Long, @Query("nonce_str") nonce_str: String, @Query("sign") sign: String,
                               @Field("description") description: String,
                               @Field("price") price: Int,
                               @Field("currency") currency: String,
                               @Field("channel") channel: String,
                               @Field("operator") operator: String,
                               @Field("system") system: String): Call<JSONObject> // com.alibaba.fastjson.JSONObject
}

我得到改造服务的代码:

fun createService(): RoyalPayApi {
        val retrofit = Retrofit.Builder()
        .baseUrl(ROYAL_PAY_ADDRESS)
        .addConverterFactory(FastJsonConverterFactory.create())
        .addCallAdapterFactory(RxJava2CallAdapterFactory.create())
        .build()

    return retrofit.create(RoyalPayApi::class.java)
}

我发送请求和接收响应的代码:

 var api = createService()
    var call = api.createRoyalPaySDKOrder(ROYAL_PAY_PARTNER_CODE, order_id, time, ROYAL_PAY_NONCE_STR, sign,
        description, price, "AUD", channel, "kate", "android")

    call.enqueue(object : Callback<JSONObject>{
        override fun onResponse(call: Call<JSONObject>, response: Response<JSONObject>) {
            val str = ""
        }

        override fun onFailure(call: Call<JSONObject>, t: Throwable) {
            val str = ""
        }
    })

这是我收到的回复:

在此处输入图像描述

这是响应体(这里中文应该不影响理解):

在此处输入图像描述

这包括原始响应(使用 com.google.gson.JsonObject):

在此处输入图像描述

使用 com.alibaba.fastjson.JSONObject 的原始响应 在此处输入图像描述

如果将 JSONObject 更改为 String,它只会返回 String 版本的错误 :(: 在此处输入图像描述

4

1 回答 1

0

服务器期待 JSON 正文请求。您正在注释您的数据,@Field这将导致请求形成为 queryString。

即您的请求正文将如下所示:

description=foo&price=123...

而不是这个:

{
    "description": "foo",
    "price": 123,
    ...
}

要实现您想要的,请在此处检查此问题。第一个答案直接适用于 Java 对象,但如果您不想使用自定义类,也可以使用第二个答案。

于 2019-04-30T06:47:22.300 回答