Secure context
This feature is available only in secure contexts (HTTPS), in some or all supporting browsers.
This is an experimental technology
Check the Browser compatibility table carefully before using this in production.
The PaymentRequest.canMakePayment() method of the PaymentRequest interface indicates whether the PaymentRequest object can make a payment before calling show(). It returns a Promise resolves to true if the user agent supports any of the payment methods supplied to the constructor, and false otherwise. if this method is called too often, the spec allows the user agents to return a promise rejected with a DOMException.
Syntax
PaymentRequest.canMakePayment()
.then( boolean => { ... })
.catch( error => { ... })
Returns
A Promise to a Boolean that resolves to true if the user agent supports any of the payment methods supplied in the PaymentRequest constructor.
Parameters
None
Examples
In the following example, is excerpted from a demo that asynchronously builds a PaymentRequest object for both Android Pay and credit cards. It wraps the call to canMakePayment() in feature detection, and calls an appropriate callback depending on the resolution of the Promise.
async function initPaymentRquest() {
const details = {
total: {
label: "Total",
amount: {
currency: "USD",
value: "0.00",
},
},
};
const supportsApplePay = new PaymentRequest(
{ supportedMethods: "https://apple.com/apple-pay" },
details
).canMakePayment();
// Supports Apple Pay?
if (await supportsApplePay) {
// show Apple Pay logo, for instance
return;
}
// Otherwise... let's see if we can use basic card
const supportsBasicCard = await new PaymentRequest(
[{ supportedMethods: "basic-card" }],
details
).canMakePayment();
if (supportsBasicCard) {
// show basic card support
return;
}
// Otherwise, make payments using HTML form element
}
Specifications
| Specification | Status | Comment |
|---|---|---|
| Payment Request API The definition of 'canMakePayment()' in that specification. |
Candidate Recommendation | Initial definition. |
Browser Compatibility
| Desktop | Mobile | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Basic support | Chrome
Full support
61
| Edge Full support 16 | Firefox
Full support
55
| IE No support No | Opera No support No | Safari ? | WebView Android No support No | Chrome Android
Full support
56
| Edge Mobile Full support Yes | Firefox Android
Full support
55
| Opera Android No support No | Safari iOS ? | Samsung Internet Android Full support 6.0 |
Legend
- Full support
- Full support
- No support
- No support
- Compatibility unknown
- Compatibility unknown
- Experimental. Expect behavior to change in the future.
- Experimental. Expect behavior to change in the future.
- User must explicitly enable this feature.
- User must explicitly enable this feature.