gpt4 book ai didi

asp.net - 在 asp.net mvc 中使用来电显示作为 twilio 号码

转载 作者:行者123 更新时间:2023-12-02 06:26:35 25 4
gpt4 key购买 nike

我已经开设了 twilio 试用帐户。我想在我的 asp.net 应用程序中使用经过验证的被叫 ID 号码,而不是购买新的 twilio 号码。但我不知道如何使用它。这是我的代码,

public ActionResult SendSms()
{
string ACC_SID = ConfigurationManager.AppSettings["ACC_SID"];
string AUTH_TKN = ConfigurationManager.AppSettings["AUTH_TKN"];

TwilioRestClient client = new TwilioRestClient(ACC_SID, AUTH_TKN);
client.SendMessage("+8801941234567", "+8801671234567", string.Format("This is a test message!"));
return RedirectToAction("SmsView");
}

什么也没发生。如何使用我的被叫号码发送短信?

最佳答案

I faced the same scenario while I was working on Twilio first time and at that time I used below steps to make things workable.

1) 首先,我建议您在 SendSMS 函数中添加 Try{} catch{} block 。这会让您知道 SendMessage 工作正常。

2)在 twilio 中,我们需要在发送短信之前注册手机号码。

3)如果您的功能运行正常(没有发生错误),那么在 Twilio 中,有一个“日志”选项卡,您可以在其中查看您的短信是否正确发送。

关于asp.net - 在 asp.net mvc 中使用来电显示作为 twilio 号码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30093869/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com