带有标题令牌的ionic 3调用api

时间:2019-04-04 11:21:38

标签: angular ionic3 postman

我有api url和token。在邮递员中,该api可以正常工作并显示数据。我需要在控制台的ionic 3应用程序中显示数据,有人知道如何显示此信息吗?我尝试它,但显示错误。

api:http://api.igiinsurance.com.pk:8888/insurance_takaful/insurance-api/get_panel_hospitals.php?offset=0&limit=100

令牌:ee66cf61762eab785b006186dbc8c980

邮递员的屏幕截图: enter image description here

我尝试使用此代码,但无法正常工作。

  getDataUsingToken1(token) { 
    const httpOptions = {headers: new HttpHeaders().set("Authorization", "token "+token)}; 
     return this.httpClient.get('this.apiurl', httpOptions) 
  }; 

  ngOnInit() { 
    this.getDataUsingToken1(this.token).subscribe(data=>{ 
      console.log(data); 
    },
    err => console.log(err.message)
    );
  } 

1 个答案:

答案 0 :(得分:1)

尝试一下:

getDataUsingToken1(token) { 
         return this.httpClient.get(this.apiurl,{headers:new HttpHeaders({
                  'token': token
                })) 
      }