我有一個發送POST HTTP請求的問題。它停止在(HttpWebResponse)request.GetResponse()
和超時後引發超時過期異常,但如果我通過GET發送相同的請求,所有工作正常。發送POST請求REST API方法調用
有沒有人知道它可能是什麼?
try
{
var request = (HttpWebRequest)WebRequest.Create(uri);
request.Method = "POST";
if (content != null)
request.GetRequestStream().Write(content, 0, content.Length);
using (var response = (HttpWebResponse)request.GetResponse())
{
return new Response(response);
}
}
catch (WebException exception)
{
return new Response(exception);
}
請創建一個答案,你自己的問題,並接受它。 – Cheesebaron