#kekko7072
1 messages · Page 1 of 1 (latest)
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.
- kekko7072, 2 days ago, 24 messages
Hi there!
hi thanks for response
Google Pay and Apple Pay are basically card payment methods. So if you allow users to save their card, then it will also work for Google/Apple Pay.
I have this as backend code, and it's not letting me doing it.
// Create a SetupIntent to set up our payment methods recurring usage
const setupIntent = await stripe.setupIntents.create({
payment_method_types: ["card_present"],
customer: customer.id,
});
Hi! I'm taking over from my colleague. Please, give me a moment to catch up.
Do you mean you want to detect if someone used Apple/Google Pay in the Terminal?
no
with the provided code at the moment if someone uses apple pay or google pay it syas Declined.
I want to make this work also for apple pay and google pay because now it's working only with real cards
i'm using a BBPOS terminal BLE with android app
on my andorid app i call: confirmSetupIntent, to confirm payment.
You don't need any extra setup to accept Apple Pay or Google Pay, because the Terminal has no way to know if that's a real card or a phone. If some cards are declined the problem is somewhere else.
Could you please share an example PaymentIntent ID?
yes req_hQ29mnrVNW0DMX
It return this error: "Card Present and Interac Present SetupIntents can only be created with physical cards, not with mobile wallets."
I see now, I've never seen this error before. I guess it's indeed impossible to set up without a physical card.
It's just something that's not supported, unfortunately. There's nothing to follow up on.
Any alternative solution, that you know it works?
I guess it's pretty straightforward, you want SetupIntents with mobile wallets, and that's not supported. It depends on you what you would be willing to change.
ok