AngularJS / OAuth 2传输层安全性

时间:2015-05-31 07:21:23

标签: angularjs http oauth-2.0 http-post

我试图获取响应的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);
        });

1 个答案:

答案 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);
        });