Spec information for standard error responses (MSC3743).

This commit is contained in:
Patrick Cloke 2022-11-17 09:50:22 -05:00
parent 2fcc92c2fb
commit bb9b4bd526
5 changed files with 36 additions and 3 deletions

View file

@ -164,6 +164,14 @@ each is as follows:
Homeservers should periodically try again for the newer endpoints
because the application service may have been updated.
#### Unknown routes
If a request for an unsupported (or unknown) endpoint is received than the server
must respond with 404 `M_UNRECOGNIZED` error.
Similarly, a 405 `M_UNREOCGNIZED` error is used to denote an unsupported method
to a known endpoint.
#### Pushing events
The application service API provides a transaction API for sending a

View file

@ -107,6 +107,11 @@ No resource was found for this request.
Too many requests have been sent in a short period of time. Wait a while
then try again.
`M_UNRECOGNIZED`
The server did not understand the request, this is expected to be returned with
an 404 HTTP status code if the endpoint is not implemented or an 405 HTTP status
code if the endpoint is implemented, but the incorrect HTTP method is used.
`M_UNKNOWN`
An unknown error has occurred.
@ -116,9 +121,6 @@ The following error codes are specific to certain endpoints.
<!-- TODO: move them to the endpoints that return them -->
`M_UNRECOGNIZED`
The server did not understand the request.
`M_UNAUTHORIZED`
The request was not correctly authorized. Usually due to login failures.

View file

@ -108,6 +108,11 @@ attempting to verify ownership of a given third party address.
The request contained an unrecognised value, such as an unknown token or
medium.
This is also used as the response if a server did not understand the request,
this is expected to be returned with an 404 HTTP status code if the endpoint is
not implemented or an 405 HTTP status code if the endpoint is implemented, but
the incorrect HTTP method is used.
`M_THREEPID_IN_USE`
The third party identifier is already in use by another user. Typically
this error will have an additional `mxid` property to indicate who owns

View file

@ -37,6 +37,16 @@ notification provider (e.g. APNS, GCM).
Mobile Device or Client
```
## API standards
### Unsupported endpoints
If a request for an unsupported (or unknown) endpoint is received than the server
must respond with 404 `M_UNRECOGNIZED` error.
Similarly, a 405 `M_UNREOCGNIZED` error is used to denote an unsupported method
to a known endpoint.
## Homeserver behaviour
This describes the format used by "HTTP" pushers to send notifications

View file

@ -84,6 +84,14 @@ to be an IP address in which case SNI is not supported and should not be sent.
Servers are encouraged to make use of the [Certificate
Transparency](https://www.certificate-transparency.org/) project.
### Unsupported endpoints
If a request for an unsupported (or unknown) endpoint is received than the server
must respond with 404 `M_UNRECOGNIZED` error.
Similarly, a 405 `M_UNREOCGNIZED` error is used to denote an unsupported method
to a known endpoint.
## Server discovery
### Resolving server names