【发布时间】:2018-05-09 06:23:29
【问题描述】:
我有这个功能,但 zomato 一直将它返回为 403(无效的 API)。我不确定是否需要其他功能/参数来填充用户密钥
url='https://developers.zomato.com/api/v2.1/search?count=50&lat=111&lon=111&radius=1500&order=desc'
sendGetRequest() {
const headers = new HttpHeaders()
.set('cache-control', 'no-cache')
.set('content-type', 'application/json')
.set('user-key', 'mykeygoeshere')
return this.httpClient
.get(this.url, '', { headers: headers })
.subscribe(res => res.json);
}
【问题讨论】:
-
根据网页描述,您需要生成 API 密钥。你有钥匙吗?
-
您是否尝试过使用 Postman 或 curl 等 REST 工具的请求?
-
密钥在 php Curl @PrasadBonthu 上正常工作
标签: angular angular-httpclient zomato-api