my POST request looks like this:
const loginParam = new HttpParams()
.set('Username', 'myUser')
.set('Password', ':(7vHa%+_(Tbc+m@');
this.http.post('/post', loginParam).subscribe(value => {
console.log('success');
}, error => {
console.log('error');
});
The server replies (status code 500) that the login was unsuccessful. Can it be that the password is not sent correctly? In the following a snippet from the devtools:
View Form Data (the password seems to be wrong - the plus sign has disappeared)
Is it possible that the server gets an incorrect password? Everything works without problems with Postman.