Questions tagged [razorpay]

Razorpay provides APIs to process payments, invoices using cards, netbanking, wallets, UPI, and other methods. Ask questions here only if they are programming questions. If you are a Razorpay user and have support queries, contact Razorpay.

Razorpay provides APIs to process payments, invoices using cards, netbanking, wallets, UPI, and other methods.

Ask questions here only if they are programming questions. If you are a Razorpay user and have support queries, contact Razorpay using http://razorpay.com/contact/.

485 questions
49
votes
3 answers

Serviceworker must be a dictionary in your web app manifest

I had done payment integration to razorpay and when click the button it throws an console error serviceworker must be a dictionary.
Darren John Mathews
  • 515
  • 1
  • 5
  • 10
28
votes
4 answers

Invariant Violation: new NativeEventEmitter() requires a non-null argument

image I am developing an ios app but i got dependency issues and Invariant Violation: new NativeEventEmitter() requires a non-null argument. error import { NativeModules, NativeEventEmitter } from 'react-native'; const razorpayEvents = new…
baiju
  • 381
  • 1
  • 3
  • 3
16
votes
8 answers

The id provided does not exist razorpay in nodejs

i'm implementing razorpay payment gateway in my React.js app with backend nodejs. here frontend.jsx razorpayHandler = () =>{ const payment_amount = this.props.TotalPrice; const backend_url = 'https://25234399bb.ngrok.io'; …
zulqarnain
  • 1,536
  • 4
  • 26
  • 44
15
votes
1 answer

window.getDeviceDetails is not a function in razorpay integration with flutter

This is the Error Message that is showing I/chromium: [INFO:CONSOLE(1)] "Uncaught TypeError: window.getDeviceDetails is not a function", source: https://api.razorpay.com/v1/checkout/public?version=1.5.16&library=checkoutjs&platform=android (1)
13
votes
3 answers

getPackages() method in MainApplication.java, the module might be created twice

I'm trying to integrate Razorpay with my react-native application using there official documentation from- https://razorpay.com/docs/payment-gateway/react-native-integration/standard/android/ but I'm getting this exception while running the…
Sandip Biswas
  • 340
  • 1
  • 3
  • 10
8
votes
6 answers

Razorpay signature verification not happening as SHA256 Digest is wrong NodeJS

I am making an app in which after a successful payment I create a digest which I verify using the suggest way of Razorpay signature verification. My backend is in NodeJS and here is how I am creating the digest. const crypto = require("crypto"); …
sidd
  • 629
  • 10
  • 30
7
votes
1 answer

How to integrate Razorpay Payment Gateway in WordPress

I am planning to integrate Razorpay Payment Gateway in my client website which has been developed in WordPress in which the scenario will be as follows. The user will fill inquiry form with his requirement. Then depend on customer requirement owner…
shruti kharge
  • 115
  • 1
  • 2
  • 8
7
votes
3 answers

Razor pay payment integration -> How can i detect razor pay model close by close button X

i am using Razorpay in CI framework when user close without payment create razor pay model then for cancel order i want a query fire by status changed as cancelled. So how can i detect this. I am already using by click jQuery click on close function…
Sachin Basendra
  • 105
  • 1
  • 1
  • 10
5
votes
0 answers

RazorPay: getting CORS error in fetchPayment REST API

I am able to integrate RazorPay in my application. After successful payment I am trying to call RazorPay REST API fetchPayment to get the complete detail of transaction but facing below error. Access to XMLHttpRequest at…
5
votes
2 answers

Razorpay Error - {"code":"BAD_REQUEST_ERROR","description":"ay_order_id is not a valid id"}

I'm implement Razorpay with PaymentResultWithDataListener. Actually i need order_id and signature so i use PaymentResultWithDataListener not used PaymentResultListener because there are no option to get order_id and signature. And I have follow…
Shivam Kumar
  • 1,892
  • 2
  • 21
  • 33
5
votes
2 answers

prefill not working in razorpay

$data = [ "key" => $api_key, "amount" => $amount, "name" => "DJ Tiesto", "description" => "Tron Legacy", "image" => "logo.png", "prefill" …
Vijay Makwana
  • 911
  • 10
  • 24
5
votes
1 answer

How to use API in wordpress

I would like to connect one Razorpay Payment API with WordPress, API has authentication token using username and password. is there any builtin functionality available in WordPress to make a call and handle response?
Aiyaz Khorajia
  • 598
  • 2
  • 11
4
votes
3 answers

razor payment giving No appropriate payment method found error

so I'm implementing this simple razor payment integration. but it's giving me a "No appropriate payment method found" error. I tried choosing the payment options form before that didn't work either. val razorpay = RazorpayClient("my key", "my secret…
subrata sharma
  • 344
  • 4
  • 17
4
votes
3 answers

unable to show success page after completion of payment

i am using razorpay payment gateway web integration for my learning eccomerce project everyhing work fine payment can be done all i want is to store some information after payment done in my order model using test mode my views.py for checkout …
4
votes
0 answers

The requested URL was not found on the server razorpay API

I have below code in my web $api_key = env('rzpKey'); $api_secret = env('rzpSecret'); $accountId = env('rzpAccountId'); $api = new Api($api_key, $api_secret); $rzp = $api->payment->fetch($request->razorpay_payment_id); // ..captured payment.. and…
Vpa
  • 703
  • 2
  • 9
  • 30
1
2 3
32 33