我正在创建一个用于使用 IdentityServer 3 的测试应用程序,并且我正在使用 AngularJs、Angular Ui 路由器和 oauth-ng 库来创建它。我的应用程序需要在客户端使用 OpenID 连接授权代码流。所以我对 oauth-ng 库做了很小的改动。我正在使用 oauth-ng lib 从 IdentityServer3 检索授权代码,并且我正在使用 $http.post() 将该代码发送到令牌端点并获取 access_token。
以下是我的代码..
JavaScript
.controller('LoginController', function ($scope, $http, $timeout, $location) {
var getParamsFromUrl = function(url) {
var splitted = url.split('?');
splitted = splitted[1].split('&');
var params = {};
for (var i = 0; i < splitted.length; i++) {
var param = splitted[i].split('=');
var key = param[0];
var value = param[1];
params[key] = value
}
return params;
};
var getToken = function (url, data) {
return $http.post(url, data);
};
if($location.absUrl().split('?')[1]) {
$scope.params = getParamsFromUrl($location.absUrl());
var tokenData = {};
tokenData.grant_type = 'authorization_code';
tokenData.code = $scope.params.code;
tokenData.redirect_uri = 'http://localhost:8000/login.html';
var tokenEndpoint = 'https://localhost:44333/core/connect/token';
getToken(tokenEndpoint, tokenData)
.then(function (data, status, headers, config) {
console.log(data);
console.log(status);
console.log(headers);
console.log(config);
});
}
});
授权代码已成功检索,当我尝试连接到令牌端点时,它会在浏览器上引发以下错误。
选项https://localhost:44333/core/connect/token b @ angular.min.js:87n @ angular.min.js:82$get.f @ angular.min.js:80(匿名函数) @ angular. min.js:112$get.n.$eval @ angular.min.js:126$get.n.$digest @ angular.min.js:123$get.n.$apply @ angular.min.js:126 (匿名函数)@ angular.min.js:17e @ angular.min.js:36d @ angular.min.js:17uc @ angular.min.js:18Jd @ angular.min.js:17(匿名函数)@ angular .min.js:250n.Callbacks.j @jquery.min.js:2n.Callbacks.k.fireWith @jquery.min.js:2n.extend.ready @jquery.min.js:2I @jquery.min.js :2
XMLHttpRequest 无法加载https://localhost:44333/core/connect/token。请求的资源上不存在“Access-Control-Allow-Origin”标头。因此,不允许访问源“ http://localhost:8000 ”。响应具有 HTTP 状态代码 405。
然后我尝试使用这行代码在应用程序配置中配置 $httpProvider。我的配置看起来像这样。
.config(function ($locationProvider, $httpProvider) {
$locationProvider.html5Mode(true);
$httpProvider.defaults.withCredentials = true; // <= Added this
});
仍然遇到同样的问题。如何从客户端解决此问题?我可以从客户端解决这个问题吗?