NestJS Authentification with JWT Passport not working
问题 I am trying to set up a very simple login system using jwt-passport with nestjs. I followed this tutorial: https://docs.nestjs.com/techniques/authentication but I just can't get it to work. I am really new to this stuff and would appreciate if anyone can show me the way. The way I send the login to the server: this.clientAuthService.login(this.userName, this.password).then(response => { this.clientAuthService.setToken(response.access_token); this.router.navigate(['/backend']); }); My