#Danik
1 messages · Page 1 of 1 (latest)
hello! what payment page are you referring to? How are you integrating with Stripe - are you using Checkout or Payment Element?
I have created a test page on my MVC project.
Refering to the official Stripe docs
Which includes the Server-side code, and the client-side JS file.
Using the createElement("payment" ...
can you share the PaymentIntent id?
I'm not sure what it is, but here is some payment id: pi_3LnENvIjD9jLTt0t0if0HCtj
I guess "pi" stands for "payment intent"
can you check if you're passing in a boolean for automatic_payment_methods.enabled? https://dashboard.stripe.com/test/logs/req_vlexjYdck122dl
Yes I am
do you have a test page that you can share?
how can I upload the files?
as in, do you have a public URL for your test site which I can access?
No I don't have public URL, only localhost
gimme a while, looking into this
what other PaymentMethod types are you expecting to see?
I'm interested in Bank redirects, Bank debits, Google Pay, Apple Pay, and other wallets.
In my company we have Cards-only payment right now, and my current task is to extend payment methods.
For Apple Pay and Google Pay : https://stripe.com/docs/payments/accept-a-payment?platform=web&ui=elements#apple-pay-and-google-pay
These payment methods require you to serve your application over HTTPS in development and production. Additionally, you need to verify your domain for Apple Pay.
for bank redirects / bank debits - the payment methods that you've enabled right now are only if you present in EUR
We have https in production and on my local environment.
for wallets like alipay and wechat pay, you need to present in either CNY, or your default settlement currency, which for your account is JPY
The problem is, that they show up if I explicitly list those payments (with AutoPaymenthMethods disabled), but when I use AutoPaymentsMethods.Enabled =true, they don't show up.
I want to control the payment methods available from the Stripe Dashboard rather than the code
that PaymentIntent example which you provided is using currency=usd
automatic payment methods determine what payment methods to offer based on some factors, one of which is the currency for the payment
for example, SOFORT will only be available as a payment method option if the payment is using EUR
OK, I just switched to EUR and they show up. Thanks a lot !