问题标签 [http-digest]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c# - .NET 5 HttpClient 摘要式身份验证
我正在尝试HttpClient
在 .NET 5 中进行摘要身份验证以与 mongoDB Atlas 一起使用。.Net Core HttpClient Digest Authentication中建议的解决方法不再适用于 .NET 5。
例如,这段代码
当目标框架是 .net core 3.1 时返回 200 ok 并返回正确的数据
但是当目标框架是 .NET 5 http 客户端时,不要在后台处理摘要流并返回
有谁知道我除了自己实现摘要流程之外还有其他选择吗?