在我的网络应用程序中,我有一个表单,用户可以在其中向任何电话发送短信。动作声明如下:
[HttpPost]
public ActionResult Index(Massages massages)
{
// called the webservice
return View(massages);
}
这工作正常。
有将 SMS 消息发送到客户端(即他们的电话)的 Web 服务。在这个 Web 服务调用中,我们还必须提供一个 PostBackUrl,以便我们可以看到客户端提供的响应。
此响应以 JSON 和 HttpPost 的形式出现。
我很困惑如何声明这样的功能。
//It is wrong but It might be something like this.
[HttpPost]
public ActionResult ReplyBack(JSON reply)
{
return View(reply);
}