Earlier quoted context omitted.
This is more low-level than that. This is an API to retrieve payment details, not to process an actual payment. You'll want to use Stripe or the like for that.
Thanks. So it's for people looking to build their own Stripe?
Google Payments API
21–26 of 26 posts
Re: Google Payments API
#22https://stripe.com/docs/pay-with-google Looks like Stripe supports it. The name is a bit different, but this is probably just Google being Google.
Re: Google Payments API
#23Earlier quoted context omitted.
Under the section about the rules > The following terms apply if you access or use the Google Payment APIs in Central America, South America or China: ... I'm no lawyer but this seems to imply that it at least includes those regions.
It is a shame that there is no clear information regarding this. I am in Costa Rica (Central America) and would love to use this here.
Here is a demo I created for edX: https://www.youtube.com/watch?v=axTCbUjWcbI
Re: Google Payments API
#24I think this will substantially increase conversion rates. My experience with it as a customer was that I paid for something I otherwise wouldn't have, because I didn't have to input my credit card info.
Other factors that hamper wallet payments: - We didn't do any marketing around the rollout. Those who ended up on our checkout page and happened to be using Safari...and happened to have device with a fingerprint reader...and happened to have a credit card setup, saw the Apple Pay button. Others did not. A small marketing push might have helped attract those curious to try out the technology. - User input is still an issue. We still require users provided a billing address to help combat fraud. When I first created my billing address for Apple Pay, there was a typo in the country name. This resulted in an invalid country code being sent to my backend server, which rejected the request. The UI doesn't show the country at all, and I ultimately had to delete my own contact card to fix the address. - Not all banks support the technology. I've seen payments rejected from Russia, Australia, Canada, and even Georgia (U.S.) because some banks simply don't support tokenization/Apple Pay.
You can see some of our initial work at https://openedx.atlassian.net/wiki/spaces/LEARNER/pages/1615..., if you're curious.
Re: Google Payments API
#25This must be the 5th Google money API/interface to date. It doesn't seem like they learned from the previous attempts.
Re: Google Payments API
#26Earlier quoted context omitted.
It is a shame that there is no clear information regarding this. I am in Costa Rica (Central America) and would love to use this here.
Ultimately, acceptance depends on who is processing your payments (e.g. Stripe, Adyen, CyberSource). All Apple/Google Pay do is take advantage of tokenization, which allows buyers to send merchants a token/pointer to an account rather than a real credit card number. Every transaction gets a different card number to minimize risk in the event of a data breach. Additionally, both services make it really easy to checkou…