#mirror_of_light

1 messages · Page 1 of 1 (latest)

vale forgeBOT
trail sphinx
#

When you say you want direct google pay integration, are you referring to natively integrating Google Pay API for Web?

#

We support Google Pay through various elements on web
https://docs.stripe.com/google-pay?platform=web#web

I don't believe we have a doc on how you can integrate it natively by directly using Google Pay APIs.

That might involve sending raw card information to our APIs after you decrypt on your end which requires you to be PCI compliant and what not.

covert rain
#

Let me provide an example of how it is already working with another one provider.

I've implemented the Google Pay button integration according to the following tutorial: https://developers.google.com/pay/api/web/guides/tutorial

This way I have only the Google Pay button in the place that I need.

Customers click the Google Pay button and do all the related stuff on the Google Pay popup(like choosing a card, etc).

Then Google Pay provides some information about the customer(eg. phone number, etc) and a special token.

This token with some additional information I send to the payment provider so the provider charges money.

Does Stripe have the ability to do the same way?

trail sphinx
covert rain
#

Maybe there is another way exists to do such integration with Stripe?
The goal is to show just the Google Pay button without any additional redirects, etc, so customers will have a simple and familiar way to quickly make a purchase.

trail sphinx
#

yup, checkout the guide I shared above.

Express Checkout Element is likely what you're looking for

covert rain
#

thanks a lot, saw this page previously but decided that it is not what I need. I will look more in detail now.