提供的ID在Node.js中不存在razorpay

时间:2018-11-28 02:45:45

标签: node.js payment-gateway payment razorpay

我正在使用后端nodejs在我的React.js应用程序中实现razorpay付款网关。

此处 frontend.jsx

razorpayHandler = () =>{
        const payment_amount  = this.props.TotalPrice;
        const backend_url = 'https://25234399bb.ngrok.io';
        const self = this;
        const options = {
        key: config.RAZOR_PAY_KEY,
        amount: payment_amount * 100,
        name: 'StanPlus',
        description: 'pay your ambulance fare',
        handler(response) {
            const paymentId = response.razorpay_payment_id;
            const url =  backend_url+'/razorpay/'+paymentId+'/'+payment_amount+'/'+self.id;
            console.log(paymentId)
            // Using my server endpoints to capture the payment
            fetch(url, {
            method: 'get',
            headers: {
                "Content-type": "application/x-www-form-urlencoded; charset=UTF-8"
            }
            })
            .then(resp =>  resp.json())
            .then(function (data) {
                    console.log(data)
            })
            .catch(function (error) {
                console.log('Request failed', error);
            });
        },
        theme: {
            color: '#40A9FF',
        },
        };
        const rzp1 = new window.Razorpay(options);

        rzp1.open();
    }

backend.js(nodejs)

var express = require('express');
var router = express.Router();
var config = require('../config');

const Razorpay = require('razorpay');
const instance = new Razorpay({
  key_id: config.razorpay_live_key,
  key_secret: config.razorpay_live_secret,
});

router.get('/:payment_id/:amount/:BID',function(req,res,next){
    const {payment_id } = req.params;
    const {BID} = req.params;
    const amount = Number(req.params.amount*100);
    instance.payments.capture(payment_id, amount).then((data) => {
        data.Bid = BID;
        res.json(data);
    }).catch((error) => {
        res.json(error);
    });
})
module.exports = router;

显示我错误

  

“状态代码”:400,“错误”:{“代码”:“ BAD_REQUEST_ERROR”,“说明”:“提供的ID不存在”

但是如果使用测试键处理相同的代码,则其成功完成,但无法与实时api一起使用。
在这里,我向后端传递了一个额外的参数,这对我们来说是必需的,但是如果删除了该参数,那么它也不起作用。但是带有参数的参数可以与测试api一起使用。
当我们向后端发送请求时,它正在生成ID并也发送到后端,但仍显示提供的ID不存在

5 个答案:

答案 0 :(得分:17)

如果您正在使用测试模式,则只需从json对象中删除 order_id 参数。

答案 1 :(得分:2)

  1. 对于测试,从选项json数据中删除OrderId。
  2. 对于实时模式,从用户控件传递自动生成的Orderid。

答案 2 :(得分:0)

一周前我也遇到了这个错误。当我们将测试密钥更改为生产密钥以进行最终付款时,就会出现此错误。

所以我遇到了这个问题提供的ID不存在,因为前端和后端(node.js端)的Razorpay密钥不匹配

因此,请确保您在后端和前端都具有相同的客户端密钥和生产环境的秘密。

在评论中让我知道是否仍未解决。

答案 3 :(得分:0)

删除 order_id 不是我们应该遵循文档的好习惯。 要在 order_id 中获取 React,您必须首先在后端创建订单,例如 (node.js)。按照以下步骤从 order_id 获取 Razorpay

步骤 - 1

var instance = new Razorpay({  key_id: 'YOUR_KEY_ID',  key_secret: 'YOUR_KEY_SECRET'})

这将启动新的 Razorpay 对象。

步骤 - 2

MyOrder = instance.orders.create({amount, currency, receipt, notes})

这将为您创建一个订单,然后您可以访问 order_id 检查您的控制台以获取更多选项 最后你必须在你的情况下传递你的 order_id 你必须在 options 中传递 order_id。

注意:您可以像这样访问订单 ID MyOrder.id

有关更多信息,请查看官方文档。 https://razorpay.com/docs/payment-gateway/server-integration/nodejs/

您可以在此处找到各种平台的 Razorpay SDKs https://razorpay.com/integrations/

答案 4 :(得分:0)

如果您用于付款,则从选项 JSON 值中删除 order_id。

 var options = {
        "key": "xxxxxxxxxxxxxxx", // Enter the Key ID generated from the Dashboard
        "amount": "50000", // Amount is in currency subunits. Default currency is INR. Hence, 50000 refers to 50000 paise
        "currency": "INR",
        "name": "Acme Corp",
        "description": "Test Transaction",
        "image": "https://example.com/your_logo",
        // "order_id": "order_9A33XWu170gUtm", //This is a sample Order ID. Pass the `id` obtained in the response of Step 1
        "handler": function (response){
            alert(response.razorpay_payment_id);
            alert(response.razorpay_order_id);
            alert(response.razorpay_signature)
        },
        "prefill": {
            "name": "Gaurav Kumar",
            "email": "gaurav.kumar@example.com",
            "contact": "9999999999"
        },
        "notes": {
            "address": "Razorpay Corporate Office"
        },
        "theme": {
            "color": "#3399cc"
        }
    };