gpt4 book ai didi

c# - 如何将查询字符串添加到 httpwebrequest

转载 作者:可可西里 更新时间:2023-11-01 08:21:35 25 4
gpt4 key购买 nike

我想向 httpwebrequest 添加一些查询字符串,但是找不到任何属性?我记得以前有一个 QueryString 字典可以用。

最佳答案

添加查询字符串的最佳方式如下:

var targetUri = new Uri("http://www.example.org?queryString=a&b=c");
var webRequest = (HttpWebRequest)WebRequest.Create(targetUri);

var webRequestResponse = webRequest.GetResponse();

记住: 如果您使用用户输入来构造 Uri,请确保对其进行验证、转义并且不信任它。

关于c# - 如何将查询字符串添加到 httpwebrequest,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5040294/

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