#jatinpatel0708
1 messages · Page 1 of 1 (latest)
hello! you can take a look at these guides :
https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements
https://stripe.com/docs/webhooks/quickstart
okay, thanks
elements = stripe.elements({ clientSecret });
const linkAuthenticationElement = elements.create("linkAuthentication");
linkAuthenticationElement.mount("#link-authentication-element");
const paymentElementOptions = {
layout: "tabs",
};
// const paymentElement = elements.create("payment", paymentElementOptions);
const paymentElement = elements.create('payment', {
paymentMethodOrder: ['apple_pay', 'google_pay', 'card', 'klarna']
});
paymentElement.mount("#payment-element");
here is the my code the Google Pay is not showing
does your app meet all of the requirements stated? https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements#apple-pay-and-google-pay