You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Twirp wire protocol uses HTTP URLs to specify the RPC
31
33
endpoints on the server for sending the requests. Such direct mapping
@@ -36,15 +38,14 @@ the following components.
36
38
typically published via API documentation or service discovery.
37
39
Currently, it should only contain URL `scheme` and `authority`. For
38
40
example, "https://example.com".
39
-
41
+
***Prefix** is usually "/twirp", but it could be empty "", or an
42
+
arbitrary path like "/my/custom/prefix".
40
43
***Package** is the proto `package` name for an API, which is often
41
44
considered as an API version. For example,
42
45
`example.calendar.v1`. This component is omitted if the API
43
46
definition doesn't have a package name.
44
-
45
47
***Service** is the proto `service` name for an API. For example,
46
48
`CalendarService`.
47
-
48
49
***Method** is the proto `rpc` name for an API method. For example,
49
50
`CreateEvent`.
50
51
@@ -145,30 +146,70 @@ Content-Length: 27
145
146
{"message":"Hello, World!"}
146
147
```
147
148
149
+
148
150
## Errors
149
151
150
152
Twirp error responses are always JSON-encoded, regardless of
151
153
the request's Content-Type, with a corresponding
152
154
`Content-Type: application/json` header. This ensures that
153
155
the errors are human-readable in any setting.
154
156
155
-
Twirp errors are a JSON object with three keys:
157
+
Twirp errors are a JSON object with the keys:
156
158
157
159
***code**: One of the Twirp error codes as a string.
158
160
***msg**: A human-readable message describing the error
159
161
as a string.
160
-
***meta**: An object with string keys and values holding
162
+
***meta**: (optional) An object with string values holding
161
163
arbitrary additional metadata describing the error.
162
164
163
165
Example:
166
+
167
+
```json
168
+
{
169
+
"code": "internal",
170
+
"msg": "Something went wrong"
171
+
}
164
172
```
173
+
174
+
Example with metadata:
175
+
176
+
```json
165
177
{
166
-
"code": "permission_denied",
167
-
"msg": "thou shall not pass",
168
-
"meta": {
169
-
"target": "Balrog"
170
-
}
178
+
"code": "permission_denied",
179
+
"msg": "Thou shall not pass",
180
+
"meta": {
181
+
"target": "Balrog",
182
+
"power": "999"
183
+
}
171
184
}
172
185
```
173
186
174
-
For more information, see https://github.com/twitchtv/twirp/wiki/Errors.
187
+
### Error Codes
188
+
189
+
Twirp errors always include an error code. This code is represented
190
+
as a string and must be one of a fixed set of codes, listed in the
191
+
table below. Each code has an associated HTTP Status Code. When a
192
+
server responds with the given error code, it must set the
193
+
corresponding HTTP Status Code for the response.
194
+
195
+
| Twirp Error Code | HTTP Status | Description
196
+
| ------------------- | ----------- | -----------
197
+
| canceled | 408 | The operation was cancelled.
198
+
| unknown | 500 | An unknown error occurred. For example, this can be used when handling errors raised by APIs that do not return any error information.
199
+
| invalid_argument | 400 | The client specified an invalid argument. This indicates arguments that are invalid regardless of the state of the system (i.e. a malformed file name, required argument, number out of range, etc.).
200
+
| malformed | 400 | The client sent a message which could not be decoded. This may mean that the message was encoded improperly or that the client and server have incompatible message definitions.
201
+
| deadline_exceeded | 408 | Operation expired before completion. For operations that change the state of the system, this error may be returned even if the operation has completed successfully (timeout).
202
+
| not_found | 404 | Some requested entity was not found.
203
+
| bad_route | 404 | The requested URL path wasn't routable to a Twirp service and method. This is returned by generated server code and should not be returned by application code (use "not_found" or "unimplemented" instead).
204
+
| already_exists | 409 | An attempt to create an entity failed because one already exists.
205
+
| permission_denied | 403 | The caller does not have permission to execute the specified operation. It must not be used if the caller cannot be identified (use "unauthenticated" instead).
206
+
| unauthenticated | 401 | The request does not have valid authentication credentials for the operation.
207
+
| resource_exhausted | 429 | Some resource has been exhausted or rate-limited, perhaps a per-user quota, or perhaps the entire file system is out of space.
208
+
| failed_precondition | 412 | The operation was rejected because the system is not in a state required for the operation's execution. For example, doing an rmdir operation on a directory that is non-empty, or on a non-directory object, or when having conflicting read-modify-write on the same resource.
209
+
| aborted | 409 | The operation was aborted, typically due to a concurrency issue like sequencer check failures, transaction aborts, etc.
210
+
| out_of_range | 400 | The operation was attempted past the valid range. For example, seeking or reading past end of a paginated collection. Unlike "invalid_argument", this error indicates a problem that may be fixed if the system state changes (i.e. adding more items to the collection). There is a fair bit of overlap between "failed_precondition" and "out_of_range". We recommend using "out_of_range" (the more specific error) when it applies so that callers who are iterating through a space can easily look for an "out_of_range" error to detect when they are done.
211
+
| unimplemented | 501 | The operation is not implemented or not supported/enabled in this service.
212
+
| internal | 500 | When some invariants expected by the underlying system have been broken. In other words, something bad happened in the library or backend service. Twirp specific issues like wire and serialization problems are also reported as "internal" errors.
213
+
| unavailable | 503 | The service is currently unavailable. This is most likely a transient condition and may be corrected by retrying with a backoff.
214
+
| dataloss | 500 | The operation resulted in unrecoverable data loss or corruption.
Copy file name to clipboardexpand all lines: docs/spec_v7.md
+8-1
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
id: "spec_v7"
3
3
title: "Twirp Wire Protocol (v7)"
4
-
sidebar_label: "Version 7 (Draft)"
4
+
sidebar_label: "Version 7 (Current)"
5
5
---
6
6
7
7
This document defines the Twirp wire protocol over HTTP. The
@@ -218,3 +218,10 @@ corresponding HTTP Status Code for the response.
218
218
| dataloss | 500 | The operation resulted in unrecoverable data loss or corruption.
219
219
220
220
221
+
## Differences with v5
222
+
223
+
Note v6 was a draft and never released. Twirp implementations supporting the protocol spec v5 should update directly to support v7.
224
+
225
+
* Twirp URLs in v5 could only have the "/twirp" prefix. In v7 they can have any arbitrary prefix or no prefix. See Go PR for reference: https://github.com/twitchtv/twirp/pull/264
226
+
* Error responses with code `resource_exhausted` in v5 had the HTTP status `403`. In v7 they have status `429`. See Go PR for reference: https://github.com/twitchtv/twirp/pull/270
0 commit comments