🇫🇷 Français | 🇬🇧 English
Present the main endpoints available to integrate L’Identité Numérique La Poste through OpenID Connect.
👉 This page centralizes useful URLs for Sandbox and Production environments.
| Environment | URL |
|---|---|
| Sandbox | https://authent.pprod.lidentitenumerique.laposte.fr |
| Production | https://authent.lidentitenumerique.laposte.fr |
Used to initiate user authentication.
GET /auth/realms/partenaire/protocol/openid-connect/auth
👉 Used in the Authorization Code flow.
Used to exchange a code for tokens.
POST /auth/realms/partenaire/protocol/openid-connect/token
👉 Returns:
Used to retrieve user data.
GET /auth/realms/partenaire/protocol/openid-connect/userinfo
👉 Requires a valid access_token.
Used to verify JWT signatures.
GET /auth/realms/partenaire/protocol/openid-connect/certs
👉 Returned in JWKS format.
Standard document containing the full configuration.
GET /auth/realms/partenaire/.well-known/openid-configuration
👉 Recommended for automated integration.
https://authent.pprod.lidentitenumerique.laposte.fr/auth/realms/partenaire/.well-known/openid-configuration
⚠️ Use `.well-known/openid-configuration` To automatically retrieve endpoints.
⚠️ Do not hardcode public keys Use the `/certs` endpoint.
⚠️ Verify environments Sandbox and Production use different URLs.
⚠️ Always use HTTPS.
⚠️ `/token` calls must be performed server-side only.
👉 Understand environments: