Reputation: 1439
we are using Vercel for making development fast . in our react app , after payment page when payment redirect to our given url it gives 405 http error, how can we handle this?
Upvotes: 1
Views: 1156
Reputation: 9
This error happens when your page does not use next js serverside rendering. I had same issue but solved it by converting the page from a static page to a server rendered page using getServerSideProps
Upvotes: 0
Reputation: 1439
I finally found the problem , it is coming from PayTabs's side followings are the logic they are handling wrong:
Upvotes: 0