#Olivia Wen

1 messages · Page 1 of 1 (latest)

civic thunderBOT
dawn mountain
#

Have you enable them on your Dashboard setting? And do you use Automatic Payment Method on the Checkout?

vagrant wren
#

I have enabled Alipay and WeChat in the dashboard.

#

How do I use the automatic payment method in checkout?

#

Which parameter is it in the interface document? I can't find it, please help!

dawn mountain
pallid viper
#

SessionCreateParams sessionCreateParams = SessionCreateParams.builder()
.setMode(SessionCreateParams.Mode.PAYMENT)
.setSuccessUrl("http://localhost:8080/success")
.setCancelUrl("http://localhost:8080/cancel")
.addLineItem(SessionCreateParams.LineItem.builder()
.setPrice(
price.getId())
.setQuantity(
2L)
.build())
.build();
Session session = Session.create(sessionCreateParams);

dawn mountain
#

If you could provide the request id req_xxx I can do a quick check

pallid viper
#

req_I4BvRNkGDVYsS5

#

found?

dawn mountain
#

We are looking into this

#

qq, if you use a price in SGD instead, do you see AliPay/WechatPay?

pallid viper
#

ok,try it

#

why can't i use USD

dawn mountain
#

Does it work?

#

I think that's AliPay/WeChatPay requirement

#

Since you are a SG merchant, you can only enable on SGD

pallid viper
#

Chanage to SGD , I can see ALIPAY and WECHAT

#

thank you

civic thunderBOT