我正在尝试使用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):
答案 0 :(得分:0)
服务器需要JSON正文请求。您正在用hosts.json
注释数据,这将导致请求形成为queryString。
即您的请求正文将如下所示:
ng serve
代替此:
@Field
要实现所需的功能,请选中this question here。第一个答案直接用于Java对象,但是如果您不想使用自定义类,也可以使用第二个答案。