#hakiros

1 messages · Page 1 of 1 (latest)

rare wagonBOT
#

Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.

halcyon rivet
#

hi! not sure I understand. How are you integrating with Stripe today, what does your code look like?

gentle kelp
#

my bad, i know what the problem is. But I have different issue On my page I have section pay for subscription. after user press that button he is redirected to pay,
const session = await stripe.checkout.sessions.create({
billing_address_collection: 'auto',
customer: loggedUser.stripe_customer_id,
line_items: [
{
price: prices.data[0].id,
quantity: 1,
},
],
mode: 'subscription',
allow_promotion_codes: true,
locale: lang as any,
success_url: returnUrl,
cancel_url: cancelUrl,
});
he got generated link to pay and he there he should have credit card, google pay and apple pay, but he only have credit card vissible, how can i make apple pay possible?
I have already verified domain but I dont think that matters since he is redirected to checkout.stripe.com anyway

halcyon rivet
#

Apple Pay will appear if you're using a supported browser(like Safari on a Mac and you're logged into an Apple account with a card in your wallet).

gentle kelp
#

and how about google pay?