ASP.NET Core 2.0 中 Web API 的本地用户帐户存储

Local user account store for Web API in ASP.NET Core 2.0(ASP.NET Core 2.0 中 Web API 的本地用户帐户存储)
本文介绍了ASP.NET Core 2.0 中 Web API 的本地用户帐户存储的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用 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 的本地用户帐户存储的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)