Is there a way to attach the Bearer token for each /api/ call out through 
something similar to an $httpProvider.interceptors in Angular 1?

Right now I'm attaching it at every function call

    getUsers() {
        let jwt = Cookie.get('token');
        let authHeader = new Headers();
        if (jwt){
            authHeader.append('Authorization', 'Bearer ' + jwt);
        }
        return this.http.get('/api/users',{
            headers: authHeader
        }).map(res => res.json());
    }


-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to angular+unsubscr...@googlegroups.com.
To post to this group, send email to angular@googlegroups.com.
Visit this group at https://groups.google.com/group/angular.
For more options, visit https://groups.google.com/d/optout.

Reply via email to