-
Notifications
You must be signed in to change notification settings - Fork 22.9k
FF144 Idempotency-Key docs #41572
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FF144 Idempotency-Key docs #41572
Conversation
|
Preview URLs Flaws (6)URL:
URL:
(comment last updated: 2025-10-28 21:48:02) |
d28feda to
45e0a9e
Compare
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
5e5ffcb to
0f046c5
Compare
0f046c5 to
8d438bf
Compare
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
Co-authored-by: Brian Smith <brian@smith.berlin>
Removed outdated comments about Firefox's integration with Idempotency Key.
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
|
Thanks @bsmth ! I tool all your comments. |
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks, Hamish - everything looking good IMO 👍🏻
files/en-us/web/http/reference/headers/idempotency-key/index.md
Outdated
Show resolved
Hide resolved
Co-authored-by: Brian Smith <brian@smith.berlin>
|
Thanks @bsmth and @Josh-Cena |
FF135 adds support for the
Idempotency-Keyheader behind a preference - I'm working on this because there was an abortive attempt to ship in 145.This allows a client to make a POST or PATCH request idempotent, so that if the client doesn't receive a response it can safely resend the request without having to worry about whether the server already acted on it and the response was just lost.
The key is sent in each new requests to indicate that a POST/PATCH is a particular unique command. If the server gets the same request with the same key it doesn't act on it after the first time, but responds as though it had. The key and error response format is defined by the server.
Related docs work can be tracked in #41497