我正在尝试在外部API上执行GET请求。该api给了我一个用户名和密码,并对其进行了编码以获取基本令牌。当我在Postman上进行测试时,一切正常,但是在实现Angular 6时却收到404错误,这很奇怪,因为我在Postman中使用了完全相同的URL。这是我的代码:
this.http.get('https://api.easypost.com/v2/shipments',{
headers:{
'Authorization':'Basic '+this.token
}
}
).subscribe((res:Response)=>{
console.log(res)
})
我不知道为什么我会得到404。URL在Postman中可以正常工作。这是我的网络标签: