支払いリクエスト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)
});