XRPC is a general purpose server-to-server messaging protocol. It was created for the AT Protocol but is a generic communications layer which can be applied to multiple use-cases (and which does not include any ATP-specific semantics). The repository data layer and social applications operate as layers atop XRPC.
┌─────────────────────┐
│ Social Applications │ Application semantics
└─┰──────────┰────────┘
┃ ┃
┃ ┌───────▽────────┐
┃ │ Repositories │ Block & record storage
┃ └───────┰────────┘
┃ ┃
┌─▽──────────▽────────┐
│ XRPC │ Wire protocol
└─────────────────────┘
Features:
getSchema
XRPC supports client-to-server and server-to-server messaging over HTTP/S. Each user has a "Personal Data Server (PDS)" which acts as their agent in the network, meaning most (if not all) of their communication is routed through their PDS.
┌────────┐ ┌────────┐
│ Server │ ◀──XRPC──▶ │ Server │
└────────┘ └────────┘
▲
│
XRPC
│
▼
┌────────┐
│ Client │
└────────┘
XRPC "Methods" possess the following attributes:
Calls to a method must specify the ID, Parameters, Input, and certain HTTP Headers for the request. Likewise the return value must provide some information about the HTTP response. Therefore XRPC does not fully abstract away the semantics of HTTP when used in APIs.
Methods are identified using NSIDs, a form of Reverse Domain-Name Notation.
Some example method IDs:
com.example.status()
io.social.getFeed()
net.users.bob.ping()
Method schemas are encoded in JSON using Lexicon Schema Documents.
Method schemas are designed to be machine-readable and network-accessible. While it is not currently required that a schema is available on the network, it is strongly advised to publish schemas so that a single canonical & authoritative representation is available to consumers of the method.
To fetch a schema, a request must be sent to the builtin getSchema
method. This request is sent to the authority of the NSID.
getSchema
#TODO
The HTTP Method used depends on the type
specified by the method schema.
Type | Method |
---|---|
query |
GET |
procedure |
POST |
All requests are sent to the /xrpc/{methodId}
path on the target server. For example, a call to the io.social.getFeed
method would be sent to /xrpc/io.social.getFeed
path.
The parameters (as specified in the Method schema) are encoded as query parameters. The values should be encoded using the following algorithm in pseudo-javascript:
function encodeParam (paramType, value) {
if (paramType === 'boolean') {
return value ? 'true' : 'false'
} else {
return encodeURIComponent(value)
}
}
If a default value is specified in the method schema, that value should be included in requests to ensure consistent caching behaviors.
Header | Usage |
---|---|
Content-Type |
Must specify the encoding of the request body if present. |
Authorization |
May specify the authentication data if present. See Authentication for more information. |
Response types are identified by the HTTP status codes.
200
Request successful#The request has succeeded. Expectations:
Content-Type
header must be populated.400
Invalid request#The request is invalid and was not processed.
401
Authentication required#The request cannot be processed without authentication. Expectations:
WWW-Authenticate
header must be populated with an authentication challenge. See Authentication for more information.403
Forbidden#The user lacks the needed permissions to access the method.
404
XRPC not supported#The interpretation of a 404
response is somewhat unique for XRPC. A 404
indicates that the server does not provide a resource at the given location (/xrpc
) meaning the server does not support XRPC.
To indicate that the given procedure is not implemented, use the 501
response.
413
Payload too large#The payload of the request is larger than the server is willing to process. Payload size-limits are decided by each server.
429
Rate limit exceeded#The client has sent too many requests. Rate-limits are decided by each server. Expectations:
Retry-After
header may be populated with the amount of time that must pass before the next request.500
Internal server error#The server reached an unexpected condition during processing.
501
Method not implemented#The server does not implement the requested method.
502
A request to upstream failed#The execution of the procedure depends on a call to another server which has failed.
503
Not enough resources#The server is under heavy load and can't complete the request.
504
A request to upstream timed out#The execution of the procedure depends on a call to another server which timed out.
Any response code not explicitly enumerated should be handled as follows:
1xx
treat as a 404
2xx
treat as a 200
3xx
treat as a 404
(redirects are not supported)4xx
treat as a 400
5xx
treat as a 500
TODO
In non-200 (error) responses, services may respond with a JSON body which matches the following schema:
interface XrpcErrorDescription {
error?: string
message?: string
}
The error
field of the response body should map to an error name defined in the method's Lexicon schema. This enables more specific error-handling by client software. This is especially advised on 400, 500, and 502 responses where further information will be useful.
The AT Protocol will launch soon.
Join the waitlist to try the beta before it's publicly available.