Twilio试用帐户对已修改号码的限制?

时间:2014-05-11 20:01:09

标签: twilio

是否可以向已验证的号码发送回复? 它失败了,我不知道为什么。

这是我的代码。 首先是回复页面.. 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,主持人可以关闭此解析。

1 个答案:

答案 0 :(得分:0)

虽然OP解决了他们的问题,但您始终可以针对the docs检查您的设置。

如果您想深入了解unicode冒险和Twilio,您可以查看这些帖子。

  1. https://www.twilio.com/blog/2015/08/common-sms-problems-unicode-twilio.html
  2. https://www.twilio.com/engineering/2012/11/08/adventures-in-unicode-sms