作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我创建了一个 ASP.NET-WebApi 应用程序,但出现了这个错误:
HttpConfiguration does not contain a definition for SuppressDefaultHostAuthentication
代码是自动生成的,我认为它必须是一个引用,但找不到那个引用。
using System.Web.Http;
using Microsoft.Owin.Security.OAuth;
public static class WebApiConfig
{
public static void Register(HttpConfiguration config)
{
// Web API configuration and services
// Configure Web API to use only bearer token authentication.
config.SuppressDefaultHostAuthentication();
// Web API routes
config.MapHttpAttributeRoutes();
config.Routes.MapHttpRoute(
name: "DefaultApi",
routeTemplate: "api/{controller}/{id}",
defaults: new { id = RouteParameter.Optional }
);
}
}
最佳答案
尝试添加 nugget 包:Microsoft ASP.NET Web API 2.2 OWIN
https://www.nuget.org/packages/Microsoft.AspNet.WebApi.Owin/
关于c# - HttpConfiguration 不包含 SuppressDefaultHostAuthentication 的定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40688613/
我创建了一个 ASP.NET-WebApi 应用程序,但出现了这个错误: HttpConfiguration does not contain a definition for SuppressDef
我遇到了一个解决方案问题,我使用 Visual Studio SPA 模板中的部分在具有 Oauth 身份验证的 WebApi 中拥有帐户 Controller 。 app.UseOAuthBea
我是一名优秀的程序员,十分优秀!