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

推荐订阅源

Cloudbric
Cloudbric
T
Threat Research - Cisco Blogs
Simon Willison's Weblog
Simon Willison's Weblog
AWS News Blog
AWS News Blog
P
Privacy & Cybersecurity Law Blog
H
Help Net Security
云风的 BLOG
云风的 BLOG
G
GRAHAM CLULEY
Spread Privacy
Spread Privacy
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
A
Arctic Wolf
Project Zero
Project Zero
Engineering at Meta
Engineering at Meta
P
Privacy International News Feed
Blog — PlanetScale
Blog — PlanetScale
Stack Overflow Blog
Stack Overflow Blog
M
MIT News - Artificial intelligence
The Register - Security
The Register - Security
Recorded Future
Recorded Future
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
C
Cisco Blogs
PCI Perspectives
PCI Perspectives
Recent Announcements
Recent Announcements
Martin Fowler
Martin Fowler
A
About on SuperTechFans
W
WeLiveSecurity
GbyAI
GbyAI
V
Vulnerabilities – Threatpost
The GitHub Blog
The GitHub Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
C
Check Point Blog
Y
Y Combinator Blog
月光博客
月光博客
Scott Helme
Scott Helme
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Google DeepMind News
Google DeepMind News
F
Fortinet All Blogs
U
Unit 42
G
Google Developers Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
T
Threatpost
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Google Online Security Blog
Google Online Security Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Cisco Talos Blog
Cisco Talos Blog
博客园 - 三生石上(FineUI控件)
Hugging Face - Blog
Hugging Face - Blog
MongoDB | Blog
MongoDB | Blog
博客园 - 司徒正美

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>.