我将 Asp.Net Core 3.1 API 与 Identity Server 一起使用,并且我很长时间以来一直使用 Postman 作为 API 测试人员,并且它运行良好,但是,在版本更新到 8.+.+ 后,Postman 向我返回此错误:
<HEAD>
<TITLE>Bad Request</TITLE>
<META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii">
</HEAD>
<BODY>
<h2>Bad Request - Request Too Long</h2>
<hr>
<p>HTTP Error 400. The size of the request headers is too long.</p>
</BODY>
我输入了标题 key(Content-Type)和 value(application/json),并且授权是 bearer 令牌类型空着身子。
我按照很多问题来解决这个问题,就像下面提到的:
如何解决 Postman(错误请求 - 请求时间过长)问题?