每次在静态 HttpClient 上清除 DefaultRequestHeaders 是否会导致 Azure Function 应用程序出现问题?
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
HttpClient
的实例可能由 Azure Function 的多次调用共享,并且标头的值根据请求而更改,则不应使用该实例。在这种情况下,您应该使用HttpRequestMessage
类的Headers
属性。使用
HttpClient
的DefaultRequestHeaders
是有问题的,因为多次调用可能会更改标头,因此您不能依赖 httpclient 发送正确的标头,因为该函数的另一次调用可能会更改标头以它自己的方式。You shouldn't use the
DefaultRequestHeaders
ofHttpClient
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 theHeaders
property of theHttpRequestMessage
class.Using the
DefaultRequestHeaders
ofHttpClient
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.