Home > database >  Consume POST data on react
Consume POST data on react

Time:07-20

We are calling a payment gateway api and that vendor is sending response with some POST method. Our UI is build in react which is not able to consume that data. How can I do that?

CodePudding user response:

if i get your question right, here its better if they send it using ```GET `` if you want to consume then this is the right way

CodePudding user response:

Assuming this is CCAvenue, you will need a server to take that response and redirect you back to React with the necessary details.

  • Related