Twilio发送短信返回null

时间:2015-03-04 15:32:47

标签: .net vb.net twilio

当我尝试在vb.net中使用twilio API时,结果返回null。

    Imports Twilio
    Imports System

    Protected Sub btnCall_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCall.Click
        SendSMS()
    End Sub

    Protected Sub SendSMS()
        Try
            Dim client As TwilioRestClient = New TwilioRestClient(AccountSId, AuthToken)
            Dim result = client.SendMessage("***", "***", "Hello World", "")
            Response.Write(result.Status)
        Catch ex As Exception
            Response.Write("Error")
        End Try
    End Sub

来自号码是twilio号码,而号码是美国电话号码。客户已连接。但是"结果"返回null。 twilio仪表板上没有任何内容。 result.status抛出异常,因为result为null。我使用vs 2010和twilio包从nuget,版本3.6.27安装。谢谢!

1 个答案:

答案 0 :(得分:1)

Twilio传道者在这里。

尝试检查结果中的RestException属性:

Dim result = client.SendMessage("***", "***", "Hello World", "")
If (result.RestException IsNot Nothing) Then
     Console.Writeline(result.RestException.Message)
End If

希望有所帮助。