Skip to content

203 Non-Authoritative Information

The request was successful, but the information coming back was modified by a proxy somewhere along the way, not the original server.

Very rarely used by standard application servers. A proxy server might use this if it modified the 200 OK response coming from your backend before sending it to the client.

import { HttpCode, get } from 'shokupan';
export const getResource = get('/resource', () => {
return { message: 'Non-Authoritative Information' };
}).pipe(HttpCode(203));