angular2-jwt: AuthHttp causes an error 'Expected 0 type arguments, but got 1.'

1k Views Asked by At

when I use AuthHttp from angular2-jwt in code below, I see error:

"Expected 0 type arguments, but got 1."

public getData(): Observable<User[]>{
const url = environment.apiUrl + "users";

return this.authHttp
  .get<User[]>(url)
  .map((res: User[]) => res);
  }

If I use http: HttpClient, code works well.

What to change in this code to run it with AuthHttp?

2

There are 2 best solutions below

0
On BEST ANSWER

I found a solution:

   public getData(): Observable<User[]>{
    const url = environment.apiUrl + `users`;

    return this.authHttp
      .get(url)
      .map((res: Response) => <User[]>res.json());
  }
1
On

Are you sure you're using it correctly ?

I'd expect it to look like this:

this.http.get(url) 
      .map( (res) => res.json())
      .subscribe(
        data => this.thing = data,
        err => console.log(error),
        () => console.log('Request Complete')
      );