我正在尝试集成付款请求api,但我在这里遗漏了一些东西。如何验证使用 api 进行的付款?当用户支付我的回调被执行,但我怎么知道支付完成?这是我的代码。
paymentRequest.show()
.then((paymentResponse) => {
fetch('http://validate-payment/api')
.then((response) => {
return response.json();
})
.then((json) => {
return paymentResponse.complete('fail'); // Hardcode fail
})
.catch((error) => {
reject();
})
})
.catch((error) =>{
console.log(error.message)
});