使用自定义中间件后无法再获取
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用自定义中间件后无法再获取相关的知识,希望对你有一定的参考价值。
我正在进入.NET Core,我在实现自定义中间件时遇到了一些问题。我有一个中间件应该检查标头是否有一个名为“用户密钥”的字段。如果没有,则返回400 ERROR。如果它有它,它应该给我请求的GET,但它只是给我一个404错误。从startup.cs中删除中间件时,它再次起作用,但是我无法检查它是否有密钥。
ApiKeyMiddleWare.cs
public class ApiKeyMiddleware
{
private readonly RequestDelegate _next;
public ApiKeyMiddleware(RequestDelegate next)
{
_next = next;
}
public async Task Invoke(HttpContext context)
{
if (!context.Request.Headers.Keys.Contains("user-key"))
{
//Doesn't contain a key!
context.Response.StatusCode = 400; //Bad request.
await context.Response.WriteAsync("No API key found.");
return;
}
else
{
//Contains key!
//Check if key is valid here
//if key isn't valid
/*
if(true == false)
{
context.Response.StatusCode = 401; //Unauthorized
await context.Response.WriteAsync("Invalid API key found.");
return;
}
*/
}
await _next.Invoke(context);
}
}
public static class ApiKeyMiddlewareExtension
{
public static IApplicationBuilder ApplyApiKeyMiddleWare(this IApplicationBuilder app)
{
app.UseMiddleware<ApiKeyMiddleware>();
return app;
}
}
Startup.cs - 配置方法
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.MapWhen(context => context.Request.Path.StartsWithSegments("/api"), appBuilder =>
{
appBuilder.ApplyApiKeyMiddleWare();
});
if (env.IsDevelopment())
{
app.UseBrowserLink();
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
}
app.UseStaticFiles();
app.UseMvc(routes =>
{
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}");
});
//Swagger
app.UseSwagger();
app.UseSwaggerUI(c =>
{
c.SwaggerEndpoint("/swagger/v1/swagger.json", "My API V1");
});
}
如果您需要更多信息,请告诉我。提前致谢!
答案
你的中间件很好,但是你需要使用UseWhen
扩展方法而不是MapWhen
来注册它。
UseWhen
:有条件地在请求管道中创建一个分支,该分支重新加入主管道。
MapWhen
:根据给定谓词的结果对请求管道进行分支。
换句话说,当委托返回true时,MapWhen
停止执行管道的其余部分。
以上是关于使用自定义中间件后无法再获取的主要内容,如果未能解决你的问题,请参考以下文章
Visual Studio 自定义代码片段在方法定义的参数列表中不起作用