We are using Cashfree payment gateway and want to integrate it in our frontend which we developed using nextjs. As per the documentation provided by cashfree(Most of the documentation is related to web Integration using PHP) we need to have a form with POST request which redirects to payment gateway on same window
<form id="redirectForm" method="post" action="https://test.cashfree.com/billpay/checkout/post/submit">
<input type="hidden" name="appId" value="<YOUR_APPID_HERE>"/>
<input type="hidden" name="orderId" value="order00001"/>
<input type="hidden" name="orderAmount" value="100"/>
<input type="hidden" name="orderCurrency" value="INR"/>
<input type="hidden" name="orderNote" value="test"/>
<input type="hidden" name="customerName" value="John Doe"/>
<input type="hidden" name="customerEmail" value="[email protected]"/>
<input type="hidden" name="customerPhone" value="9999999999"/>
<input type="hidden" name="returnUrl" value="<RETURN_URL>"/>
<input type="hidden" name="notifyUrl" value="<NOTIFY_URL>"/>
<input type="hidden" name="signature" value="<GENERATED_SIGNATURE>"/>
<input type="hidden" name="paymentSplits" value="<payment_split_value>"/>
</form>
In our code we are trying to make same request using Fetch
export const rtiPayment =(details)=>{
var postData = [];
for (var property in details) {
var encodedKey = encodeURIComponent(property);
var encodedValue = encodeURIComponent(details[property]);
postData.push(encodedKey + "=" + encodedValue);
}
return fetch("https://test.cashfree.com/billpay/checkout/post/submit",{
mode: 'no-cors',
method: 'POST',
headers: {
'cache-control' : 'no-cache',
"Content-Type": "application/x-www-form-urlencoded",
},
body: postData,
json: true
})
.then((response) => {
if (response.redirected) {
window.location.href = response.url;
}
console.log(response)
return response
})
.catch((err) => {
console.log(err)
})
}
But we get below in response.
PaymentRti.js:42 Response?�{type: "opaque", url: "", redirected: false, status: 0, ok: false,?�??�}
can someone suggest if we are making the request correctly. if not can you suggest the right way.
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.