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
http.StatusCreated: "Request to create or update resource successful.",
81
+
http.StatusAccepted: "The request was accepted for processing, but the processing has not completed.",
82
+
http.StatusNoContent: "Request successful. No content to send for this request.",
83
+
http.StatusBadRequest: "Bad request. Verify the syntax of the request.",
84
+
http.StatusUnauthorized: "Authentication failed. Verify the credentials being used for the request.",
85
+
http.StatusPaymentRequired: "Payment required. Access to the requested resource requires payment.",
86
+
http.StatusForbidden: "Invalid permissions. Verify the account has the proper permissions for the resource.",
87
+
http.StatusNotFound: "Resource not found. Verify the URL path is correct.",
88
+
http.StatusMethodNotAllowed: "Method not allowed. The method specified is not allowed for the resource.",
89
+
http.StatusNotAcceptable: "Not acceptable. The server cannot produce a response matching the list of acceptable values.",
90
+
http.StatusProxyAuthRequired: "Proxy authentication required. You must authenticate with a proxy server before this request can be served.",
91
+
http.StatusRequestTimeout: "Request timeout. The server timed out waiting for the request.",
92
+
http.StatusConflict: "Conflict. The request could not be processed because of conflict in the request.",
93
+
http.StatusGone: "Gone. The resource requested is no longer available and will not be available again.",
94
+
http.StatusLengthRequired: "Length required. The request did not specify the length of its content, which is required by the requested resource.",
95
+
http.StatusPreconditionFailed: "Precondition failed. The server does not meet one of the preconditions specified in the request.",
96
+
http.StatusRequestEntityTooLarge: "Payload too large. The request is larger than the server is willing or able to process.",
97
+
http.StatusRequestURITooLong: "Request-URI too long. The URI provided was too long for the server to process.",
98
+
http.StatusUnsupportedMediaType: "Unsupported media type. The request entity has a media type which the server or resource does not support.",
99
+
http.StatusRequestedRangeNotSatisfiable: "Requested range not satisfiable. The client has asked for a portion of the file, but the server cannot supply that portion.",
100
+
http.StatusExpectationFailed: "Expectation failed. The server cannot meet the requirements of the Expect request-header field.",
101
+
http.StatusUnprocessableEntity: "Unprocessable entity. The server understands the content type and syntax of the request but was unable to process the contained instructions.",
102
+
http.StatusLocked: "Locked. The resource that is being accessed is locked.",
103
+
http.StatusFailedDependency: "Failed dependency. The request failed because it depended on another request and that request failed.",
104
+
http.StatusUpgradeRequired: "Upgrade required. The client should switch to a different protocol.",
105
+
http.StatusPreconditionRequired: "Precondition required. The server requires that the request be conditional.",
106
+
http.StatusTooManyRequests: "Too many requests. The user has sent too many requests in a given amount of time.",
107
+
http.StatusRequestHeaderFieldsTooLarge: "Request header fields too large. The server is unwilling to process the request because its header fields are too large.",
108
+
http.StatusUnavailableForLegalReasons: "Unavailable for legal reasons. The server is denying access to the resource as a consequence of a legal demand.",
109
+
http.StatusInternalServerError: "Internal server error. The server encountered an unexpected condition that prevented it from fulfilling the request.",
110
+
http.StatusNotImplemented: "Not implemented. The server does not support the functionality required to fulfill the request.",
111
+
http.StatusBadGateway: "Bad gateway. The server received an invalid response from the upstream server while trying to fulfill the request.",
112
+
http.StatusServiceUnavailable: "Service unavailable. The server is currently unable to handle the request due to temporary overloading or maintenance.",
113
+
http.StatusGatewayTimeout: "Gateway timeout. The server did not receive a timely response from the upstream server.",
114
+
http.StatusHTTPVersionNotSupported: "HTTP version not supported. The server does not support the HTTP protocol version used in the request.",
115
+
http.StatusNetworkAuthenticationRequired: "Network authentication required. The client needs to authenticate to gain network access.",
0 commit comments