如何授权仅为一个特定用户使用WebApi端点?

时间:2016-01-29 23:01:42

标签: c# asp.net asp.net-web-api

我需要在onpremises IIS上安装一个asp.net web api服务,其中有一个活动目录。

我找到了这个链接: http://www.asp.net/web-api/overview/security/integrated-windows-authentication

但尚不清楚如何授权此服务仅用于特定用户。

1 个答案:

答案 0 :(得分:4)

如果您的配置已正确设置为使用Windows身份验证,那么您应该能够使用以下内容修饰控制器类或一个特定的操作方法,以实现您的目标:

class Bank { public: std::vector<BankAccount> newAccount; Bank(); }; Bank::Bank() { std::string Customer_name = " "; int Customer_balance = 0; std::cout << "Add name please "; std::cin >> Customer_name ; std::cout << "How much balance?"; std::cin >> Customer_balance; newAccount.emplace_back(Customer_name,Customer_balance); }