Re: [w3c/payment-request] Not able to add shipping options dynamically for apple pay (#778)

@marcoscaceres Thanks for the suggestion. I updated my paymentMethod to include basic card as below. 

```
[
    {
        supportedMethods: "https://apple.com/apple-pay",
        data: {
            version: 3,
            merchantIdentifier: "<merchant_id>",
            merchantCapabilities: ["supports3DS", "supportsCredit", "supportsDebit"],
            supportedNetworks: ["amex", "discover", "masterCard", "visa"],
            countryCode: "US",
        }
    },
    {
        supportedMethods: 'basic-card',
        data: {
            supportedNetworks: ['visa', 'mastercard', 'amex'],
            supportedTypes: ['credit', 'debit'],
        }
    }
];
```
when I tested this in chrome, I am able to see **shipping options** when I choose the address. So it works as expected in chrome for me. 



-- 
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/778#issuecomment-422402769

Received on Tuesday, 18 September 2018 13:56:19 UTC