每次在静态 HttpClient 上清除 DefaultRequestHeaders 是否会导致 Azure Function 应用程序出现问题?

发布于 2025-01-10 03:59:48 字数 225 浏览 0 评论 0原文

我在 Azure Function 应用程序中使用静态 HttpClient 实例。然后,我将每个请求的 Auth 标头添加到 Http 触发器。

我目前对每个请求都执行此操作

httpClient.DefaultRequestHeaders.Clear();

然后我添加其他标头,这会导致问题吗?或者最好的做法是在添加它们之前清除它们(以防它们已经存在)?

I am using a static HttpClient instance in an Azure Function app. I then add Auth headers on every request to the Http trigger.

I am currently doing this on every request

httpClient.DefaultRequestHeaders.Clear();

Then I add my other headers, could this cause issues? Or is it best practice to clear them before adding them in case they already exist?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

躲猫猫 2025-01-17 03:59:48

如果 HttpClient 的实例可能由 Azure Function 的多次调用共享,并且标头的值根据请求而更改,则不应使用该实例。在这种情况下,您应该使用 HttpRequestMessage 类的 Headers 属性。

使用 HttpClientDefaultRequestHeaders 是有问题的,因为多次调用可能会更改标头,因此您不能依赖 httpclient 发送正确的标头,因为该函数的另一次调用可能会更改标头以它自己的方式。

You shouldn't use the DefaultRequestHeaders of HttpClient if that instance is possibly shared by multiple invocations of the Azure Function and the value of the headers changes per request. In this scenario you should use the Headers property of the HttpRequestMessage class.

Using the DefaultRequestHeaders of HttpClient is problematic because multiple invocations can change the headers so you cannot rely on the httpclient sending the right header because another invocation of the function can have changed the headers in its own way.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文