您好,我正在尝试访问此url以获取我的应用程序的令牌,但始终给我400,我的应用程序的代理conf如下。
proxy.conf:
"/token": {
"target": {
"host": "url",
"protocol": "https",
"port": 443
},
"secure": false,
"changeOrigin": true,
"logLevel":"info",
"pathRewrite": {
"^/token": "/auth/token"
}
}
这是检索令牌的功能:
private getAccessToken(): Observable<ArrayBuffer> {
const url = '/token';
const body = new HttpParams()
.set('client_id', 'daiga6')
.set('client_secret', 'aouwhyruhg8ag')
.set('grant_type', 'client_credentials');
const headers = new Headers({
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0',
Accept: '*/*',
'Accept-Language': 'es-ES,es;q=0.8,en-US;q=0.5,en;q=0.3',
'Accept-Encoding': 'gzip, deflate',
'Content-Type': 'application/x-www-form-urlencoded',
Connection: 'keep-alive',
Pragma: 'no-cache',
'Cache-Control': 'no-cache'
});
const options: any = {headers};
return this.http.post(url, body, options);
}
返回我的电话的错误消息如下:
错误请求 您的浏览器发送了该服务器无法理解的请求。 原因:您正在对启用SSL的服务器端口使用纯HTTP。 请改用HTTPS方案访问此URL。
有什么想法吗?
使用此配置,您可以解决它:
"/token": {
"target": {
"host": "url",
"protocol": "https:",
"port": 443
},
"secure": false,
"changeOrigin": true,
"logLevel":"info",
"pathRewrite": {
"^/token": "/auth/token"
}
}