Stripe支付获取不到
Opened this issue · 2 comments
17608449089 commented
发行方式
None
具体平台
Android
开发环境
None
项目创建方式
None
Vue 版本
vue3
依赖版本
最新版本
问题描述
//发起支付
uni.getProvider({
service: "payment",
success: function (res) {
console.info("支付方式:", JSON.stringify(res.provider));
if (~res.provider.indexOf("stripe")) {
console.log("支持stripe");
uni.requestPayment({
provider: "stripe",
orderInfo: orderInfo,
success(res) {
console.log("requestPayment Success: " + JSON.stringify(res));
},
fail(e) {
console.log("requestPayment failed: " + JSON.stringify(e));
},
});
}
console.log("===================");
},
}); 获取不到strip,只有["alipay","wxpay"] 。在manifest.json 文件中已经配置了stripe
重现步骤
在安卓系统获取不到stripe
期望行为
获取到stripe进行支付
实际行为
获取不到stripe
截图或录屏
No response
StrivingRabbit commented
iOS 可以正常获取到?
17608449089 commented
iOS 可以正常获取到?
在云打包也获取不到,但是在自定义基座可以获取到。