#Karoon
1 messages · Page 1 of 1 (latest)
Are you following a guide from our site? Can you share what exactly you're doing?
As I understand, the checks are asynchronous so instead of using a callback on the verifyIdentity function to display success/failure you'd rely on webhooks: https://stripe.com/docs/identity/verify-identity-documents?platform=web&type=modal#handle-verification-events
You should instead just show some kind of confirmation page that states verification is ongoing
I have created webhook on my server that receive events from stripe. Then I'm doing all operations that i need (update db, send email). But on frontend i'm on stripe page. How can i redirect to my success page?
I have nodejs backend and react frontend
The process is async, so when verifyIdentity resolves the outcome of the verification is unknown. My guess is you'd need some kind of polling mechanism in your front-end that polls the Verification Session and checks the status, then updates/redirects according to the outcome