gpt4 book ai didi

c# - 如何模拟对 url 的访问?

转载 作者:太空狗 更新时间:2023-10-29 22:12:30 25 4
gpt4 key购买 nike

我有一个用户提交订单的页面,在他们提交订单后,我想点击一个 url (http://externalsite.com?id=12345&sessionid=abc123) 实际上没有将他们重定向到外部页面。

有办法吗?

最佳答案

当然,使用 HttpWebRequest从您的服务器端代码。这是一个例子:

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(
"http://externalsite.com?id=12345&sessionid=abc123");
request.Method = "GET";

HttpWebResponse response = (HttpWebResponse)request.GetResponse();
using (StreamReader reader = new StreamReader(response.GetResponseStream()))
{
string result = reader.ReadToEnd();
// Process the response text if you need to...
}

关于c# - 如何模拟对 url 的访问?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11127510/

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