When I go to authorize controller(implemented in Identity Server 4):
(*) abc.com/authorize?par1=val1&par2=val2
I am being redirected to:
(**) abc.com/login?ReturnUrl=abc.com/abc.com%2Fauthorize%3Fpar1%3Dval1%26par2%3Dval2"
One can notice that ReturnUrl
equals the (*) but just being html encoded.
I would like to add par2
value as a second parameter to the (**) url example:
abc.com/login?ReturnUrl=abc.com/abc.com%2Fauthorize%3Fpar1%3Dval1%26par2%3Dval2&par2=val2"
How to configure IdentityServer to achieve that?