Skip to content

Latest commit

 

History

History
34 lines (22 loc) · 1.95 KB

validateAuthResponse.md

File metadata and controls

34 lines (22 loc) · 1.95 KB

Function: validateAuthResponse()

💗 Help the project

Support from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by becoming a sponsor.


validateAuthResponse(as, client, parameters, expectedState?): URLSearchParams | OAuth2Error

Validates an OAuth 2.0 Authorization Response or Authorization Error Response message returned from the authorization server's as.authorization_endpoint.

Parameters

Parameter Type Description
as AuthorizationServer Authorization Server Metadata.
client Client Client Metadata.
parameters URLSearchParams | URL Authorization response.
expectedState? string | typeof expectNoState | typeof skipStateCheck Expected state parameter value. Default is expectNoState.

Returns

URLSearchParams | OAuth2Error

Validated Authorization Response parameters or Authorization Error Response.

See