Typo in default scope?
Hi,
I noticed that when no scope is defined for OAuth2 authorization, the requested scope appears to be opendid instead of openid: https://github.com/AnWeber/httpyac/blob/4e3b601651d044e53caef77e7a80df2bc4d3c61d/src/plugins/oauth2/flow/authorizationCodeFlow.ts#L71
The behavior may depend on the Identity Provider (IdP) in use if it either ignores the incorrect scope or results in an error.
With Entra ID, for example, it leads to consent errors, such as: "AADSTS65001: The user or administrator has not consented to use the application with ID..."
I encountered this problem during tests with an Entra ID client/app registration and was puzzled by the error until I examined the value of the scope query parameter in the Request Console. 😄
Thanks!