fix redirect_uri

This commit is contained in:
Marco Zeisler 2021-05-04 20:15:33 +02:00
parent f724154248
commit edac97ec8e

View File

@ -62,7 +62,7 @@ export class LoginComponent implements OnInit {
'client_id=waecm' +
'&response_type=id_token' +
'&prompt=consent' +
'&redirect_uri=' + environment.location +
'&redirect_uri=http://' + environment.location + ':' + environment.port +
'&scope=openid%20profile' +
'&nonce=' + nonce;
window.location.replace(url);