#gabrielctavares
1 messages · Page 1 of 1 (latest)
"Interested in embedding Checkout?
We are exploring the possibility of embedding Checkout on your website. If you are interested in providing feedback and gaining early access, please contact us."
I am not 100% sure what's the state of this. Please reach out to Stripe Support for more info: https://support.stripe.com/?contact=true
One more doubt, my application has a code discontinued by the stripe, the api https://api.stripe.com/v1/payment_pages is returning 400, has it already been removed?
const { error } = await stripe.redirectToCheckout({
customerEmail: this.autorizacaoController.usuario.email,
mode: 'subscription',
lineItems: [{ price: this.priceId, quantity: this.quantity }],
successUrl: `${window.location.href}/success`,
cancelUrl: `${window.location.href}/`,
});
this my code
Yes, please use the Stripe Checkout integration, you will get a Checkout URL and you will need to redirect the customer yourself.
ok
Happy to help!