#JayR
1 messages · Page 1 of 1 (latest)
Yes basically applepay is just a wrapper of a card payment method
so how can i achieve it ? basicallty i'm using react to store card info. Now i want to add apple pay as well. can you please share some reference
First you want to just enable apple pay in your Dashboard and your frontend implementation, then test in in Test mode first
it will give you a normal pm_xxx PaymentMethod object which you can reuse
i want to tokenize the card info and store it for later use it. can i do the same for apple pay ?
Ah no that's not possible. Tokenize the card info is a legacy integration and you can't really tokenize the hidden card information inside applepay
so other than payment method is there any way to work with apple pay to store applepay info & reuse it for later charges
and even if i use payment method i can create payment intent and charge the customer ? anytime ? without any user interaction
It should be payment method. And you should only create payment intent and charge the customer if that's something you communicated with them already. Apple term of services requires merchant to display ApplePay sheet everytime they charge an one-off transaction
and how can i enable apple pay from my stripe account ?
Hey! Taking over for my colleague. How are you willing to accept payment using Apple Pay ?
What Product: Checkout/Element/Express Checkout Element ?
okay
my case is like i'm storing card info( using card element - react-stripe-js) to stripe & later on uses for charging the user. now i want to implement same just to adding apply pay using PaymentElement (may be)
Yes you can achieve this. I invite you to follow this guide:
https://stripe.com/docs/payments/save-and-reuse?platform=web&ui=elements
You can save the payment method from Apple/Google pay:
https://stripe.com/docs/payments/save-and-reuse?platform=web&ui=elements#apple-pay-and-google-pay
is there any validity to use the payment method ?