• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - ionic NTLM 身份验证 - IIS

[复制链接]
菜鸟教程小白 发表于 2022-12-12 18:40:50 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在使用 Ionic 框架构建一个 iOS 移动应用程序。该应用程序将访问 API,这些 API 将由使用集成 Windows 身份验证的 IIS 上托管的 ASP.NET 5 (MVC 6) 应用程序提供服务。服务器已经有一个使用 AngularJS 客户端的 Web 界面。我一直在尝试从 Ionic/Angularjs Controller 中获取对服务器的 $http 调用,并且没有通过 IIS 集成 Windows 身份验证(我尝试在设备/模拟器以及 ionic serve 上运行)。我总是收到 401 Unauthorized 错误。我尝试将 withCredentials 设置为 true 并在请求中传入用户名/密码,但没有成功。当我尝试从 iPhone(非 Windows 环境)上的 safari 访问 API URL 时,我确实得到了浏览器身份验证弹出窗口,它在输入我的 Intranet windows 用户名密码时成功登录。

我最初遇到了一些 CORS 问题,我通过在服务器端添加 CORS 服务并允许所有来源来解决这些问题。在使用 ionic 服务进行测试时,我还设置了代理以避免 CORS 问题。有没有人做过这样的事情?这是我的 Controller 代码:

angular.module('starter.controllers', [])

.controller('AppCtrl', function($scope, $ionicModal, $http) {
$http.defaults.useXDomain = true;
  $http.defaults.withCredentials = true;
  // Form data for the login modal
  $scope.loginData = {};
  // Create the login modal that we will use later
  $ionicModal.fromTemplateUrl('templates/login.html', {
    scope: $scope
  }).then(function(modal) {
    $scope.modal = modal;
  });
  // Triggered in the login modal to close it
  $scope.closeLogin = function() {
    $scope.modal.hide();
  };
  // Open the login modal
  $scope.login = function() {
    $scope.modal.show();
  };

  // Perform the login action when the user submits the login form
  $scope.doLogin = function() {
    console.log('Doing login', $scope.loginData);
    $http.post('http://localhost:8100/api/APIAccount/Login',{withCredentials:true})
    .then(function(response)
 {
   console.log('success');
 }, function(error)  {
   console.log('error');
 });

  };
});



Best Answer-推荐答案


经过几个小时的故障排除后,它就像设置 ASP.NET 5 CORS 服务以允许凭据一样简单。在 ConfigureServices 函数的 Startup.cs 文件中,我必须输入以下内容。希望这对将来的其他人有所帮助。

services.AddCors(options => 
               {
                options.AddPolicy("AllowAllOrigins",
                builder => builder.WithOrigins("http://<domainname>")
                .AllowCredentials());
               });

关于ios - ionic NTLM 身份验证 - IIS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35639691/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap