gpt4 book ai didi

c# - WebClient 请求返回空字符串

转载 作者:太空狗 更新时间:2023-10-29 20:27:35 28 4
gpt4 key购买 nike

在我的程序中,我需要获取我的站点的内容,但是webclient对象的DownloadString方法的返回返回null,然而最有趣的是没有异常。状态码为200,请求完美,但url返回空字符串。

WebClient wc = new WebClient();
String teste = wc.DownloadString("http://www.wiplay.com.br");

我的网站 http://www.wiplay.com.br

最佳答案

您的网站似乎需要设置用户代理 header 才能响应。

在调用 DownloadString 方法之前添加以下内容:

wc.Headers.Add(HttpRequestHeader.UserAgent, "your useragent string");

关于c# - WebClient 请求返回空字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22231918/

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