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
Copy file name to clipboardExpand all lines: content/v3.md
+11-3Lines changed: 11 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -127,13 +127,21 @@ If resources have custom validation errors, they will be documented with the res
127
127
128
128
## HTTP Redirects
129
129
130
-
API v3 uses HTTP redirection where appropriate. Clients should assume that any request may result in a redirection. Receiving an HTTP redirection is *not* an error and clients should follow that redirect. Redirect responses will have a `Location` header field which contains the URI of the resource to which the client should repeat the requests.
130
+
API v3 uses HTTP redirection where appropriate. Clients should assume that any
131
+
request may result in a redirection. Receiving an HTTP redirection is *not* an
132
+
error and clients should follow that redirect. Redirect responses will have a
133
+
`Location` header field which contains the URI of the resource to which the
134
+
client should repeat the requests.
131
135
132
136
301
133
-
: Permanent redirection. The URI you used to make the request has been superseded by the one specified in the `Location` header field. This and all future requests to this resource should be directed the new URI.
137
+
: Permanent redirection. The URI you used to make the request has been
138
+
superseded by the one specified in the `Location` header field. This and all
139
+
future requests to this resource should be directed to the new URI.
134
140
135
141
302, 307
136
-
: Temporary redirection. The request should be repeated verbatim to the URI specified in the `Location` header field but clients should continue to use the original URI for future requests.
142
+
: Temporary redirection. The request should be repeated verbatim to the URI
143
+
specified in the `Location` header field but clients should continue to use the
144
+
original URI for future requests.
137
145
138
146
Other redirection status codes may be used in accordance with the HTTP 1.1 spec.
0 commit comments