Back to Explorer

Apple OAuth & OIDC endpoints

Apple OAuth & OIDC endpoints and related development resources

Apple OIDC discovery endpoint

https://account.apple.com/.well-known/openid-configuration
The well-known endpoint (.well-known/openid-configuration) that provides OpenID Connect configuration metadata, including all available endpoints and supported features.

Apple issuer URL

https://appleid.apple.com
A unique identifier URL that identifies the OAuth/OIDC provider and is used to validate tokens

Apple authorization endpoint

https://appleid.apple.com/auth/authorize
The endpoint to redirect users to in order to grant your application access to their account.

Apple token endpoint

https://appleid.apple.com/auth/token
The endpoint to exchange the authorization code or refresh token for an access token and a refresh token.

Apple JWKS URI

https://appleid.apple.com/auth/keys
The URI that provides public keys for verifying JWT tokens. These keys are used to validate the authenticity of tokens issued by the authorization server.

Apple revocation endpoint

https://appleid.apple.com/auth/revoke
The endpoint used to invalidate access tokens or refresh tokens before their expiration time, typically used when a user logs out or revokes application access.