是否可以向已验证的号码发送回复? 它失败了,我不知道为什么。
这是我的代码。 首先是回复页面.. sms.aspx ..
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="sms.aspx.cs" Inherits="CsharpTwilio.sms" %><?xml version="1.0" encoding="UTF-9">
<Response>
<Sms>Thanks for the message!</Sms>
</Response>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace CsharpTwilio
{
public partial class sms : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
string From=Request["From"];
string To=Request["To"];
string Body=Request["Body"];
}
}
}
我发现问题我选择了错误的编码应该是UTF-9,主持人可以关闭此解析。