You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When you have enough money in your Apple Wallet, you can make payments directly. However, if your Apple Wallet doesn’t have enough funds, it prompts you to use other payment methods like UPI or a credit card.
In the development environment, where everything is simulated (or "sandboxed"), payments are processed directly without issue. But in the production environment, when you choose UPI as the payment method, a request is sent to your UPI ID. However, the payment process is encountering an error and showing a “received error” status.
So, the main issues are:
Payments work fine in the development environment but not in production.
In production, UPI requests are failing with an error message.
Expected Behavior
We need to get a payment status update and a transaction ID so that we can check and verify the payment status later.
Description
When you have enough money in your Apple Wallet, you can make payments directly. However, if your Apple Wallet doesn’t have enough funds, it prompts you to use other payment methods like UPI or a credit card.
In the development environment, where everything is simulated (or "sandboxed"), payments are processed directly without issue. But in the production environment, when you choose UPI as the payment method, a request is sent to your UPI ID. However, the payment process is encountering an error and showing a “received error” status.
So, the main issues are:
Expected Behavior
We need to get a payment status update and a transaction ID so that we can check and verify the payment status later.
Environment:
Code
RNIap.requestPurchase({
sku: purchaseID,
})
.then(async (res) => {
console.log(res);
})
.catch((err) => {
console.log(err);
});
The text was updated successfully, but these errors were encountered: