HI i have a service AuthenticationService to refresh token and an interceptor that intercepts AuthHttp calls, the problem is that in the interceptor method when the call fails i make the refreshToken call subscribing the observable then when i get the response i need to call the first http call that was made and cant get it work :
refreshToken(): Observable<any>{
return this.authHttp.get(GLOBAL.apiurl+'/refresh-token',"").map(
(response) => {
let token = response.json() && response.json().token;
if (token){
console.log('refresh token');
localStorage.setItem('token', token);
return true;
}
else{
console.log('no token');
this.resetLocalStorage();
return false;
}
}
);
}
then i have an interceptor for authttp:
request(url: string | Request, options?: RequestOptionsArgs): Observable<Response> {
return this.intercept(super.request(url, options));
}
intercept(observable: Observable<Response>): Observable<Response> {
return observable.catch((err, source) => {
if (this.isUnauthorized(err.status)) {
//logout the user or do what you want
this.authService.refreshToken().subscribe(result => {
if(!result){
}
HERE THE FIRST FAILED CALL MUST BE CALLED
},
err => {
}
);
if (err instanceof Response) {
return Observable.throw(err.json().message || 'backend server error');
}
return Observable.empty();
} else {
return Observable.throw(err);
}
})
}
In this block you are returning the Observable.empty(); outside the async call, I think you need to assign this inside your service call. I think right now you would be getting the empty return as you have returned the observable without waiting for the service call (given below is the pseudo code you might need to correct it based on your requirement)