#d365-developer_apple-google-pay
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1295785034158051351
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
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.
- d365-developer_error, 21 hours ago, 19 messages
Hi ๐
Do you have an actual question?
Hi, I am trying to implement google pay and apple pay in stripe. I enabled this payment methods in stripe dashboard. Still i am not able to display this in checkout page.
Please help me on this.
Sorry that is SUPER vague.
- What Stripe UI are you using?
- How are you creating your Intents?
- Do you have a test mode URL I can visit?
We are integrating this with our .net application. I am not supposed to share links. But i can share you some info how we are implementing this.
You will
- need to ensure you are viewing your site over an HTTPS connection
- have Apple Pay domain registered and hosting the Apple Pay developer association file
First we enabled this wallets in stripe dashboard. and using HTML code to create checkout in our .net application.
createPaymentElement: function () {
const appearance = { theme: 'stripe', };
let _global = this;
this.elements = this.stripe.elements({
appearance,
clientSecret: this.clientSecret,
paymentMethodCreation: 'manual',
});
this.paymentElement = this.elements.create('payment', {
layout: 'tabs',
});
this.paymentElement.mount("#payment-element");
Here is the code used for check out page.
By using this we only seen card and us_bank_account
We also verified our site domain in stripe.
Yes we did the domain verification from stripe.
Can you share the account ID for the account you are using?
Do we need to include any parameters in code to display those?
Mean connected account id?
Oh, you are involving Connect as well? Whichever account is being used to initialize Stripe.js
Also, can you see Apple/Google Pay when you visit this test site? https://4242.io/test/payment-request-button/
How we need to test this link?
Use a web browser to open it
Yes i opened it and it is showing some code.
Yes i have seen that, it is displaying apple pay false and google pay false.
That means your browser is not configured properly
You don't have any valid payment methods so you would not see Apple or google pay
Oh do we need to configure browsers too?
Both Apple and Google Pay check the browser you are using to determine if you have valid saved payment methods. They only display if they can find these valid payment methods. The result you are seeing indicates your browser does not have saved payment methods.
I recommend reviewing Google's docs: https://pay.google.com/about/
Will you please help me on this.
This isn't a Stripe question
You need to configure your browsers (Chrome for Google Pay, Safari for Apple Pay) to use Google & Apple Pay
Okay thanks.
For Google Pay, Google has test card numbers you can use
But I think Apple requires real, valid credit cards
Okay Thanks for support.
Happy to shed what ๐ก I can ๐