We need a means to do merchant validation, as per:
https://developer.apple.com/documentation/applepayjs/providing_merchant_validation
However, this is "one and done" event, so it's a good candidate to be a promise. So, sketch:
```JS
const pr = new PaymentRequest();
// Still don't know what a website does with validationURL?
const validationURL = await pr.validateMerchant();
await pr.show();
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/payment-request/issues/646