我有:
它们都在localhost上运行,授权是access-token。
问题:
用于获取令牌的服务:
AuthenticationApi.Login = function(loginData) {
var data = 'grant_type=password&username=' + loginData.userName + '&password=' + loginData.password;
return $http.post('http://localhost:53194/Token', data, { headers: { 'Content-Type': 'application/x-www-form-urlencoded' } });
};
我该如何解决这个问题?