我试图获取响应的OAuth服务正在运行但是我的代码中出现了错误,但没有提出请求。
$http.post(myURL, 'grant_type=password&username=' + userName + '&password=' + passWord,
headers: { 'Content-Type: application/x-www-form-urlencoded', 'Authorization Basic ' + btoa(secretWord) }).
success(function (response) {
console.log(response);
}).
error(function (response) {
console.log(response);
});
答案 0 :(得分:0)
你有语法错误,因此JS不会发出HTTP Post请求,试试这个:
$http.post(myURL, 'grant_type=password&username=' + userName + '&password=' + passWord,
{ headers: { 'Content-Type': 'application/x-www-form-urlencoded', 'Authorization': 'Basic ' + btoa(secretWord) } }).
success(function (response) {
console.log(response.data);
}).
error(function (response) {
console.log(response.status);
});