gpt4 book ai didi

c# - 如何从 ASP.NET MVC 解决方案调用外部 URL

转载 作者:太空狗 更新时间:2023-10-29 20:11:52 24 4
gpt4 key购买 nike

有史以来第一篇文章。所以最好让它成为一个好的。

我有一个 ASP.NET MVC 2 Web 应用程序,其中有一个 actionResult,我需要为我调用它。

问题是我需要这个 A.R 来处理一些数据操作,然后我需要它调用一个外部 URL,它实际上是一个公司模块,负责处理向我们公司手机发送消息。

它只需要调用如下所示的 URL:

string url = "http://x.x.x.x/cgi-bin/npcgi?no=" + phoneNumber + "&msg=" + message;

我不需要任何返回消息或任何东西。只想调用该外部 URL,这当然超出了我自己的 Web 应用程序的范围。 (我不想重定向)。该 URL 必须在用户不知情的情况下在 GUI 后面调用。并且他们正在查看的页面不得受到影响。

我试过:

Server.Execute(url);

但是没有用。我听说有些人通过在页面上隐藏 iFrame 来解决这个问题。将 src 设置为可能需要的 url,然后以某种方式执行它,以实例化调用。它对我来说似乎不太优雅,但如果这是唯一的解决方案,那么有没有人有关于如何完成的例子。或者,如果您有更圆滑的建议,我会洗耳恭听。

最佳答案

我终于用这段代码让它工作了:

 string messageToCallInPatient = "The doctor is ready to see you in 5 minutes. Please wait outside room " + roomName;
string url = "http://x.x.x.x/cgi-bin/npcgi?no=" + phoneNumber + "&msg=" +
messageToCallInPatient;
HttpWebRequest webReq = (HttpWebRequest)WebRequest.Create(string.Format(url));
webReq.Method = "GET";
HttpWebResponse webResponse = (HttpWebResponse)webReq.GetResponse();

//I don't use the response for anything right now. But I might log the response answer later on.
Stream answer = webResponse.GetResponseStream();
StreamReader _recivedAnswer = new StreamReader(answer);

关于c# - 如何从 ASP.NET MVC 解决方案调用外部 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3572627/

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