Сначала преобразуйте ваше обещание в Observable
в AuthService.ts
:
import { from } from 'rxjs';
import { switchMap } from 'rxjs/operators';
...
getAccessToken(): Observable<string> {
return from(Auth.currentSession()).pipe(
switchMap(session => from(session.getAccessToken().getJwtToken())
)
};
Затем вы можете легко использовать его в AuthHttpInterceptor
:
@Injectable()
export class AuthHttpInterceptor implements HttpInterceptor {
constructor(
private authService: AuthService
) { }
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
return this.authService.getAccessToken().pipe(
switchMap(jwtToken => {
// clone the request to add the new header.
const authReq = req.clone({
headers: req.headers.set('Authorization', `Bearer ${jwtToken}`)
});
return next.handle(authReq);
})
);
}
}