我正在使用 restsharp 来消耗一个宁静的 api。以前可以工作的代码停止工作,显然是因为我必须在我的 http get 请求中设置“接受标头”。我知道,根据一些谷歌搜索,默认情况下,restsharp 设置了接受标头内容。所以我通过提琴手获得了这个http流量:
GET https://xxxx HTTP/1.1
Accept: application/json, application/xml, text/json, text/x-json, text/javascript, text/xml
User-Agent: RestSharp 104.1.0.0
Host: test.nortechonline.net
Cookie: username=xxxx; auth_key=xxxx; ws_key=xxxx
Accept-Encoding: gzip, deflate
这是否表明启用了“接受标头”?