我有以下 MVC 方法。
[System.Web.Mvc.HttpPost]
public ActionResult Listen(string status)
{
CFStatusMessage statusMessage = new CFStatusMessage();
if (!string.IsNullOrEmpty(status))
{
statusMessage = Newtonsoft.Json.JsonConvert.DeserializeObject<CFStatusMessage>(status);
}
return Content(Server.HtmlEncode(status));// View(statusMessage);
}
我正在尝试从其他应用程序..(控制台)调用上述方法。我正在使用 HttpWebRequest 来调用 MVC 方法。使用下面的代码可以调用该方法,但参数总是以空字符串的形式出现。
string content = "{\"status\":\"success\",\"payload\":\"some information\"}";
string url = "http://myrl.com";
var httpWRequest = (HttpWebRequest) WebRequest.Create(url);
httpWRequest.Method = "POST";
httpWRequest.ContentType = "text/json";
var encoding = new ASCIIEncoding();
byte[] data = encoding.GetBytes(string.Format("status={0}", Uri.EscapeDataString(content)));
httpWRequest.ContentLength = data.Length;
Stream stream = httpWRequest.GetRequestStream();
stream.Write(data, 0, data.Length);
var response = (HttpWebResponse)httpWRequest.GetResponse();
有了这个,它调用了 Listen 方法,但状态参数总是空白。而我想要 json 字符串 {status:"success",payload:"some information"} 作为参数。
我究竟做错了什么?
PS:我在发送实际内容时也尝试了以下语句。
byte[] data = encoding.GetBytes(content);
问候,米