@@ -8,7 +8,7 @@ shared data from other sites or apps. Many modern operating systems have a
|
8 | 8 | The goal is to allow web apps to appear in the UI for picking an app to share |
9 | 9 | to. |
10 | 10 | |
11 | | -In combination with the [Web Share API](https://github.com/mgiuca/web-share) |
| 11 | +In combination with the [Web Share API](https://github.com/WICG/web-share) |
12 | 12 | (being proposed in parallel), this would allow cross-sharing between websites on |
13 | 13 | any platform (even those without a native sharing system). |
14 | 14 | |
@@ -56,7 +56,7 @@ underlying system, as explored in the next section.
|
56 | 56 | ### Sharing from web to web on mobile |
57 | 57 | |
58 | 58 | Here we see the interaction between the [Web Share |
59 | | -API](https://github.com/mgiuca/web-share) and the Share Target API. You could |
| 59 | +API](https://github.com/WICG/web-share) and the Share Target API. You could |
60 | 60 | also share from a native app (depending on the system). |
61 | 61 | |
62 | 62 |  |
@@ -96,6 +96,10 @@ At least on Android, the web apps will be badged with the browser's icon.
|
96 | 96 | For more technical details on integrating with native apps, see [Native |
97 | 97 | Integration Story](native.md). |
98 | 98 | |
| 99 | +Users may wish to share photos and other files, not just links. We aim |
| 100 | +to support this in the future, with web share targets able to specify |
| 101 | +in their manifests which MIME types they accept. |
| 102 | + |
99 | 103 | ## Sample code |
100 | 104 | |
101 | 105 | Here's how to register a website to appear in the list of apps that can handle a |
@@ -161,11 +165,11 @@ native apps.
|
161 | 165 | ### Why not use registerProtocolHandler? |
162 | 166 | |
163 | 167 | This is discussed at length in the [Web Share |
164 | | -Explainer](https://github.com/mgiuca/web-share/blob/master/docs/explainer.md), |
165 | | -and depends on the outcome of that decision. If we use a URI scheme for Share |
166 | | -(instead of an API), then it would make sense to use the existing |
| 168 | +Explainer](https://github.com/WICG/web-share/blob/master/docs/explainer.md#user-content-why-not-make-a-share-uri-scheme-like-mailto-instead-of-a-javascript-api). |
| 169 | +If we used a URI scheme for Share (instead of an API), then it would make sense |
| 170 | +to use the existing |
167 | 171 | [registerProtocolHandler](https://developer.mozilla.org/en-US/docs/Web/API/Navigator/registerProtocolHandler) |
168 | 172 | API to let websites receive shares. |
169 | 173 | |
170 | 174 | However, there are a number of downsides to this approach, discussed in the |
171 | | -other document. This is an open question. |
| 175 | +other document. |