码迷,mamicode.com
首页 > Web开发 > 详细

Angular调用Asp.net Core JWT Authentication接口

时间:2018-10-30 12:06:05      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:err   angular   bsp   hand   author   http   nbsp   style   ica   

基本思路是调用登录接口,获取token,使用token请求其他JWT接口:

getHomeDetails(): Observable<HomeDetails> {
    let headers = new Headers();
    headers.append(‘Content-Type‘, ‘application/json‘);
    let authToken = localStorage.getItem(‘auth_token‘);
    headers.append(‘Authorization‘, `Bearer ${authToken}`);
  
    return this.http.get(this.baseUrl + "/dashboard/home",{headers})
      .map(response => response.json())
      .catch(this.handleError);
}  

 

Angular调用Asp.net Core JWT Authentication接口

标签:err   angular   bsp   hand   author   http   nbsp   style   ica   

原文地址:https://www.cnblogs.com/slmk/p/9875872.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!