C#使用postman框架发送请求
GET请求在使用RestSharp时不产生响应,但在Postman中获得响应
为什么postman发出的请求可以正常响应但是C#就不行
postman中post请求正常,但是利用postman生成C#后台http模拟代码之后调用失败问题记录
postman中post请求正常,但是利用postman生成C#后台代码无响应
为什么它在Postman中可以工作,而在我的C#代码中却不能
var url = string.Format("https://xx.html", id, xianlu, ep);
var htmlText = "";
Sharing.setTips("动漫id已发出请求...");
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
var client = new RestClient(url);
client.Timeout = -1;
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer tokenComesHere");
IRestResponse response = client.Execute(request);
htmlText = response.Content;
原因1. 需要加 ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
- 需要加请求头
3.目标网站本身的问题
版权归原作者 星尘库 所有, 如有侵权,请联系我们删除。