惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

人人都是产品经理
人人都是产品经理
D
Docker
GbyAI
GbyAI
B
Blog RSS Feed
博客园 - 司徒正美
博客园 - Franky
美团技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
aimingoo的专栏
aimingoo的专栏
C
Check Point Blog
IT之家
IT之家
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
www.infosecurity-magazine.com
www.infosecurity-magazine.com
AI
AI
O
OpenAI News
Attack and Defense Labs
Attack and Defense Labs
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
S
Secure Thoughts
博客园 - 聂微东
L
LINUX DO - 最新话题
U
Unit 42
SecWiki News
SecWiki News
A
Arctic Wolf
Schneier on Security
Schneier on Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
V
Visual Studio Blog
量子位
The Cloudflare Blog
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
G
Google Developers Blog
T
Threat Research - Cisco Blogs
TaoSecurity Blog
TaoSecurity Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
B
Blog
博客园 - 【当耐特】
C
CERT Recently Published Vulnerability Notes
Scott Helme
Scott Helme
Last Week in AI
Last Week in AI
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Microsoft Security Blog
Microsoft Security Blog
Apple Machine Learning Research
Apple Machine Learning Research
F
Full Disclosure
Hacker News: Ask HN
Hacker News: Ask HN
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
Latest news
Latest news

Recent Commits to web-share-target:main

Refactor: remove WebIDL (#106) · w3c/web-share-target@72dd80f Possibility of transferring user id (#100) · w3c/web-share-target@0782f1a chore: use group option in config · w3c/web-share-target@fadadfb chore: use main branch in config · w3c/web-share-target@a7a06ec Editorial: reference Encoding's 'UTF-8' directly (#96) · w3c/web-share-target@a703396 chore: migrate to WebApps WG (#95) · w3c/web-share-target@6025309 Accessibility considerations (#88) · w3c/web-share-target@93bf095 editorial: link to urlencoded serializer (#92) · w3c/web-share-target@a8d4a5d chore: cleanup some ReSpec usage (#91) · w3c/web-share-target@b27e5a8 Update w3c.json · w3c/web-share-target@41b27b5 Encourage redirect after POST (#80) · w3c/web-share-target@0d9d25f Remove 'early draft' wording (#79) · w3c/web-share-target@fc831cb Skip bad files entries and make accept required (#78) · w3c/web-share-target@83a63b0 Validate enctype when method is GET (#72) · w3c/web-share-target@4078bc4 Support file sharing (#53) · w3c/web-share-target@76eabad [web-share-target] Introduce Level 2 Spec (#71) · w3c/web-share-target@a5f4eb2 Potentially trustworthy origins (#69) · w3c/web-share-target@b3c4d76 Mention plan for sharing files (#65) · w3c/web-share-target@3fccfd1 Retire links to Interface document (#62) · w3c/web-share-target@5279a5a
Long share requests may truncate with GET (#82) · w3c/web-share-target@dd4e83f
ewilligers · 2019-04-29 · via Recent Commits to web-share-target:main

This repository was archived by the owner on Jun 30, 2026. It is now read-only.

File tree

Original file line numberDiff line numberDiff line change

@@ -73,8 +73,7 @@

7373

choosing.

7474

</p>

7575

</section>

76-

<section id="sotd">

77-

</section>

76+

<section id="sotd"></section>

7877

<section>

7978

<h2>

8079

Prerequisites

@@ -269,10 +268,10 @@ <h2>

269268

</li>

270269

</ul>

271270

<p>

272-

As with HTML forms, replying to a POST request with a

273-

<a data-cite="!RFC7231#section-6.4.4">303 See Other</a> redirect

274-

is highly recommended, as it avoids the POST being submitted a

275-

second time if the user requests a page refresh.

271+

As with HTML forms, replying to a POST request with a <a data-cite=

272+

"!RFC7231#section-6.4.4">303 See Other</a> redirect is highly

273+

recommended, as it avoids the POST being submitted a second time if the

274+

user requests a page refresh.

276275

</p>

277276

</section>

278277

<section data-link-for="WebAppManifest">

@@ -515,6 +514,10 @@ <h3>

515514

performs a side-effect without any user interaction,

516515

<code>POST</code> requests should be used.

517516

</p>

517+

<p class="warning">

518+

The user agent MAY truncate the share data if <var>method</var> is

519+

<code>"GET"</code> and an entry in the share data exceeds 2000 bytes.

520+

</p>

518521

<p>

519522

The <dfn>enctype</dfn> member specifies how the share data is encoded

520523

in the request.

@@ -737,6 +740,10 @@ <h3>

737740

</li>

738741

<li>If <var>value</var> is <code>undefined</code>, then continue.

739742

</li>

743+

<li>If <var>method</var> is <code>"GET"</code> and

744+

<var>value</var> exceeds 2000 bytes in length, the user agent MAY

745+

set <var>value</var> to the first 2000 bytes of <var>value</var>.

746+

</li>

740747

<li>

741748

<a data-cite="!INFRA#list-append">Append</a> to <var>entry

742749

list</var> a tuple with <var>name</var> and <var>value</var>.