- From: Lu <notifications@github.com>
- Date: Tue, 20 Aug 2024 14:04:57 -0700
- To: w3ctag/design-reviews <design-reviews@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
- Message-ID: <w3ctag/design-reviews/issues/875/2299762904@github.com>
## Specifying `scope` in the association file I've looked at the following options to give the association file a way to specify resources explicitly. My preference is for the fallback list. It's more verbose but allows us to accept URLPattern (or other formats) in the future. UAs are able to fall back to a simpler format following a clear order if they are unable to process a more complicated format. If left unspecified, the whole origin/site is considered part of the identified app with no resource restrictions. ### Bag of things 1 ``` JSON { "web_apps": [ { "web_app_identity": "https://myapp.com/index.html", "scope": "/app", // Can be string or array of strings. "scope_url_pattern": "https://this-origin.com/?" // Can be string or object. // Extend here. } ] } ``` ### Bag of things 2 ```JSON { "web_apps": [ { "web_app_identity": "https://myapp.com/index.html", "scope": { "prefix": "/app", // Can be string or array of strings. "url_pattern": "https://this-origin.com/?" // Can be string or object. // Extend here. } } ] } ``` ### Fallback list ``` JSON { "web_apps": [ { "web_app_identity": "https://myapp.com/index.html", "scope": [ { "url_pattern": "https://this-origin.com/?" // Can be string or object. }, { "prefix": "/app", // Can be string or array of strings. } // Extend here. ] } ] } ``` -- Reply to this email directly or view it on GitHub: https://github.com/w3ctag/design-reviews/issues/875#issuecomment-2299762904 You are receiving this because you are subscribed to this thread. Message ID: <w3ctag/design-reviews/issues/875/2299762904@github.com>
Received on Tuesday, 20 August 2024 21:05:01 UTC