#poacher2k-portal

1 messages · Page 1 of 1 (latest)

stone terrace
#

@fading cosmos this usually means you are redirecting with a HTTP 307 code from your server

#

(307 resends the POST data so if you posted to your server to create the link, then that data gets posted to Stripe, who doesn't expect it and you get that error)

fading cosmos
#

aaaaaah

#

you're absolutely right

stone terrace
#

should be possible to identify that by looking at your network tab in devtools

#

no worries, I've seen it a few times

#

switching to 302/303 should fix it

fading cosmos
#

res.redirect([status,] path) - Redirects to a specified path or URL. status must be a valid HTTP status code. If not specified, status defaults to "307" "Temporary redirect".

#

(next.js)