Re: [w3c/payment-request] Include payment handler information in response (#815)

Can we reuse the field names `"platform"` and `"id"` from [`ExternalApplicationResource`](https://w3c.github.io/manifest/#dom-externalapplicationresource) dictionary? Chrome already parses it in web app manifests to authenticate native Android payment apps.

Android:
```json
"handler": {
  "platform": "play",
  "id": "com.example.app1",
}
```

Web:
```json
"handler": {
  "platform": "web",
  "id": "https://app1.example.com",
}
```

Built-in:
```json
"handler": {
  "platform": "built-in",
  "id": null,
}
```


-- 
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/815#issuecomment-442220626

Received on Tuesday, 27 November 2018 21:18:56 UTC