#Danik

1 messages · Page 1 of 1 (latest)

wheat cloudBOT
frozen topaz
#

hello! what payment page are you referring to? How are you integrating with Stripe - are you using Checkout or Payment Element?

boreal abyss
#

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" ...

frozen topaz
#

can you share the PaymentIntent id?

boreal abyss
#

I'm not sure what it is, but here is some payment id: pi_3LnENvIjD9jLTt0t0if0HCtj

#

I guess "pi" stands for "payment intent"

frozen topaz
boreal abyss
#

Yes I am

frozen topaz
#

do you have a test page that you can share?

boreal abyss
#

how can I upload the files?

frozen topaz
#

as in, do you have a public URL for your test site which I can access?

boreal abyss
frozen topaz
#

gimme a while, looking into this

#

what other PaymentMethod types are you expecting to see?

boreal abyss
#

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.

frozen topaz
#

for bank redirects / bank debits - the payment methods that you've enabled right now are only if you present in EUR

boreal abyss
#

We have https in production and on my local environment.

frozen topaz
#

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

boreal abyss
#

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

frozen topaz
#

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

boreal abyss
#

OK, I just switched to EUR and they show up. Thanks a lot !