#avneetsingh_11747
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.
- avneet-applepay-verificationagain, 7 hours ago, 11 messages
- avneetsingh_11747, 5 days ago, 12 messages
It's expected. Only Chrome with a signed in Google Account will display it
But it is mentioned in Stripe documentation that Google pay is supported in Chrome, edge, opera and safari
Hmm okie, have you logged in the same Google Account in those browsers?
yes
tried with same and different account
This is my google chrome that has google pay
And this is opera that doesnt show google pay
Same issue with Microsoft Edge
How about our Doc https://stripe.com/docs/payments/accept-a-payment
On the same browsers, do you see GooglePay?
I dont see GooglePay on my Microsoft Edge & Opera. It is only coming up in Google Chrome.
Um are you sure logged in the Google? Are you using Window?
Yes, pretty sure I am logged in and using Window ๐
Hmm one min
Um you might be right. Could you please write into Support and mention this thread? We will take it and look closer
Ok. What is the name of thread?
Ok
FYI, I have used below logic to create payment intent and enabled google pay from my stripe dashboard that makes google pay button visible in my chrome:
public PaymentIntent createPaymentIntent(@Valid PaymentIntentRequest request) throws StripeException {
Stripe.apiKey = stripeSecret;
PaymentIntentCreateParams createParams = new PaymentIntentCreateParams.Builder()
.addPaymentMethodType("card")
.setAmount(request.getAmount())
.setCurrency(request.getCurrency())
.build();
RequestOptions requestOptions = RequestOptions.builder()
.setIdempotencyKey(createHash(request).toString())
.build();
PaymentIntent paymentIntent = PaymentIntent.create(createParams, requestOptions);
return paymentIntent;
}
Yes that's normal
1 doubt here, I have used addPaymentMethodType("card")
rather than
.setAutomaticPaymentMethods( PaymentIntentCreateParams.AutomaticPaymentMethods.builder().setEnabled(true).build()
)
Although google pay wallet is getting enabled with card payment method type as well but arent we supposed to use automatic payment method if we want to make use of wallets as well?
No, both are the same if you only want card + wallet. If you want other Payment Methods (ie. Alipay, AfterPay....) then you would want Automatic Payment Method
Gotta
I have sent a mail to Stripe support. Hopefully someone will get back to me in 24 hrs ๐
Hopefully and ty!