Skip to content

511 Network Authentication Required

You need to log in to the network to get internet access. Often seen on public Wi-Fi captive portals (like at airports or coffee shops).

Use this if you are building portal software for a public WiFi hotspot (like a coffee shop) and need to redirect a user to a Terms of Service agreement page before they can use the internet.

import { HttpException, get } from 'shokupan';
export const getResource = get('/resource', () => {
throw new HttpException('Network Authentication Required', 511);
});