Razorpay android SDK集成问题

时间:2018-06-25 07:44:50

标签: android kotlin payment-gateway razorpay

在结帐对象的JSON中使用order_id时发生

我得到的错误是: 06-23 14:08:44.132 E / PaymentActivity:166:提供的ID不存在

它进来了:

onPaymentError(code: Int, response: String?, data: PaymentData?) 

PaymentResultWithDataListener方法

startPayment方法是:

private fun startPayment(orderId: Long, paymentGateway: PaymentGateway) {
        val checkout = Checkout()
        checkout.setImage(R.drawable.lifcare_logo)
        checkout.setFullScreenDisable(true)
        try {
            val options = JSONObject()
            options.put("name", "Name")
            options.put("description", orderId.toString())
            options.put("currency", "INR")
            options.put("amount", paymentGateway.amount.times(100))
            options.put("order_id", paymentGateway.refTransactionId)

            val prefill = JSONObject()
            prefill.put("email", "EmailID")
            prefill.put("contact", "Number")
            prefill.put("method", paymentGateway.subMethod?.name)

            options.put("prefill", prefill)
            options.put("theme", JSONObject("{color: '#7cb342'}"))
            checkout.open(this, options)
        } catch (e: Exception) {
            Timber.e(e, "Cannot pay right now!!")
        }
    }

ref_transaction_id为:"ref_transaction_id": "order_AQjijq5Fj4lg8m"

不使用order_id时,SDK可以正常工作。 order_id以某种方式造成了问题。

2 个答案:

答案 0 :(得分:0)

我能知道您使用的是什么号码吗?
它不适用于默认数字,例如“ 9999999999”。

该数字应为有效数字。

答案 1 :(得分:0)

尝试在选项参数中添加注释,如下所示:

jsonObject.put("order_id", "12345")
jsonObject.put("subscription_id", "50214")
jsonObject.put("user_id", "101")
options.put("notes", jsonObject)