imranhsayed / woo-next

:rocket: React WooCommerce theme, built with Next JS, Webpack, Babel, Node, Express, using GraphQL and Apollo Client
https://codeytek.com/course/woocommerce-with-react-course/
881 stars 256 forks source link

Stripe Webhook returns a failed response ( 308 ) Permanent redirect. #82

Closed imranhsayed closed 3 years ago

imranhsayed commented 3 years ago

- Issue: After the stripe payment is made on checkout Stripe Webhook returns a failed response ( 308 ) Permanent redirect.

image

imranhsayed commented 3 years ago

Resolution:

You may get permanent redirect( 308 ), issue on webhook, as next.js is configured to add a trailing at the end of the URL. Please add a trailing slash in the webhook url, and it will be succeeded them. e.g. "https://woo-next-imranhsayed.vercel.app/api/stripe-web-hook/"

image

image