- From: Siddeshwaraswamy <notifications@github.com>
- Date: Tue, 18 Sep 2018 06:55:57 -0700
- To: w3c/payment-request <payment-request@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 18 September 2018 13:56:19 UTC
@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