Re: [w3c/browser-payment-api] How are payment requests and responses passed between the browser and third-party native wallets? (#50)

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