- From: Anders Rundgren <notifications@github.com>
- Date: Wed, 15 Jun 2016 23:14:42 -0700
- To: w3c/browser-payment-api <browser-payment-api@noreply.github.com>
- Cc:
Received on Thursday, 16 June 2016 06:15:35 UTC
Apple's method for dealing with this issue:
https://developer.apple.com/reference/applepayjs/applepaysession
```javascript
var request = {
countryCode: 'US',
currencyCode: 'USD',
supportedNetworks: ['visa', 'masterCard'],
merchantCapabilities: ['supports3DS'],
total: { label: 'Your Label', amount: '10.00' },
}
var session = new ApplePaySession(1, request);
```
is IMO the way to go.
---
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/browser-payment-api/issues/50#issuecomment-226397124
Received on Thursday, 16 June 2016 06:15:35 UTC