gpt4 book ai didi

ServiceStack JsonServiceClient - 未发送自定义 HTTP header

转载 作者:行者123 更新时间:2023-12-04 14:29:26 27 4
gpt4 key购买 nike

我正在尝试使用 JsonServiceClient 发送自定义 HTTP header ,但从未在查询中发送 header 。

我正在使用:

JsonServiceClient client = new JsonServiceClient (baseUri);
client.Headers.Add ("X-Parse-Application-Id", "XXXXXX");
client.Headers.Add ("X-Parse-REST-API-Key", "XXXXXX");

任何的想法 ?

最佳答案

您还没有提出请求。 Headers get added here当您提出请求时。

添加 header 的另一种方法是使用请求过滤器,例如:

client.RequestFilter = httpReq => {
httpReq.Headers.Add ("X-Parse-Application-Id", "XXXXXX");
httpReq.Headers.Add ("X-Parse-REST-API-Key", "XXXXXX");
};

这有效地做同样的事情。

关于ServiceStack JsonServiceClient - 未发送自定义 HTTP header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17613773/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com