#avneetsingh_11747

1 messages ยท Page 1 of 1 (latest)

merry larkBOT
#

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.

lean ore
#

It's expected. Only Chrome with a signed in Google Account will display it

lean tulip
#

But it is mentioned in Stripe documentation that Google pay is supported in Chrome, edge, opera and safari

lean ore
#

Hmm okie, have you logged in the same Google Account in those browsers?

lean tulip
#

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

lean ore
#

On the same browsers, do you see GooglePay?

lean tulip
#

I dont see GooglePay on my Microsoft Edge & Opera. It is only coming up in Google Chrome.

lean ore
#

Um are you sure logged in the Google? Are you using Window?

lean tulip
#

Yes, pretty sure I am logged in and using Window ๐Ÿ™‚

lean ore
#

Hmm one min

lean tulip
#

Logged in to my google account in opera

#

But no google pay option

lean ore
#

Um you might be right. Could you please write into Support and mention this thread? We will take it and look closer

lean tulip
#

Ok. What is the name of thread?

lean ore
#

You can just input the URL of the first message

lean tulip
#

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;
}

lean ore
#

Yes that's normal

lean tulip
#

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?

lean ore
#

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

lean tulip
#

Gotta

#

I have sent a mail to Stripe support. Hopefully someone will get back to me in 24 hrs ๐Ÿ™‚

lean ore
#

Hopefully and ty!