问题描述
我正在使用 ASP.Net Core 2.0,我想构建一个具有个人用户帐户授权类型的 Web API 项目,但唯一的选择是连接到云中的现有用户存储
.
I'm using ASP.Net Core 2.0, I want to build a Web API project with Individual User Accounts Authorization type, but the only option is Connect to an existing user store in the cloud
.
如何使用将用户帐户存储在应用程序中
为具有个人用户帐户的 Web API 添加模板?
How can I add a template for Web API with Individual User Accounts with Store user accounts in-app
?
此选项适用于 Web 应用程序,但不适用于 Web API.
This option is available for Web Application but not for Web API.
推荐答案
尝试在控制台中使用命令启动你的项目
Try start your project in the console with the command
dotnet new webapi -au Individual
之后您可以在 VS 中打开您的项目.(解决对话框).然后您可以使用例如授权属性.但该项目仍配置为使用 Azure 承载身份验证.你必须决定从哪里获得身份.您可以使用 identityserver4 或构建自己的ASP.NET Core Identity 的自定义存储提供程序"(MS-Docs)
You can open your project in VS after that. (to work around the dialog). Then you can use for example the authorize-attribute. But the project is still configured to use Azure Bearer Authentication. You have to decide where to get identity from. You can take identityserver4 or build your own "Custom storage providers for ASP.NET Core Identity" (MS-Docs)
与 MVC WebApp 的区别:这里有一个帐户控制器,其中包含处理注册和获取用户名和密码等的视图.
The difference to MVC WebApp: here you have an account controller with views to handle registrations and get a username and password and so forth.
这篇关于ASP.NET Core 2.0 中 Web API 的本地用户帐户存储的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!