I'm using AxaGuilDEv/react-oidc which is based on react-oidc package to login using oauth. The url called during signin has the following params by default : client_id, redirect_uri, response_type, scope, state, code_challenge, code_challenge_method, response_mode.
I found out how to add more params to the url, but I can't figure out how to remove the code_challenge & code_challenge_method params.
Is there a way to do that in either of the packages?
code_challenge and the code_challenge_method is part of the PKCE security feature and it is a good practice to keep using. Look in the documentation if you can disable PKCE in the OIDC server. If PKCE is required or not is controlled in the OIDC-server.