-3

我要将数据发送回我的短信网关。首先我有一个这样的查询字符串。

string mobileNo = Request.QueryString["msisdn"];
int dest = int.Parse(Request.QueryString["shortcode"].ToString());
string messageIn = Request.QueryString["msg"];
string operatorNew = Request.QueryString["operator"];

然后我将为其分配一个变量。

 public void sendReply(string messageOut)
{

   messageOut = "http://mygateway.com/api/mt?msisdn=mobileNo&body=msg&sender=shortcode&key=nvqow9rhfp&product_id=2116&operator=OperatorNew&country=us";

}

但我得到操作员分配错误..

4

1 回答 1

1

检查这个。这个参数是错误的。这个参数没有提供。

&body=msg

请与网关所有者验证您的密钥和产品 ID。

于 2012-08-23T11:10:26.610 回答