Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.93 KB

validateAuthResponse.md

File metadata and controls

35 lines (23 loc) · 1.93 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

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

Validated Authorization Response parameters. Authorization Error Responses throw AuthorizationResponseError.

See