1.使用VS2017 选择 .net core web应用程序。
2.选择web api(空)。
3.如果需要用iis express调试,则需要修改 program.cs.
4.在Controller里,如果写[Authorize]则不能支持浏览器直接打开API,不过这个特性也需要项目配置有身份认证功能,例如用IdentityServer4。
时间: 2024-10-12 14:55:04
1.使用VS2017 选择 .net core web应用程序。
2.选择web api(空)。
3.如果需要用iis express调试,则需要修改 program.cs.
4.在Controller里,如果写[Authorize]则不能支持浏览器直接打开API,不过这个特性也需要项目配置有身份认证功能,例如用IdentityServer4。