Azure通信服务简单短信

yrefmtwq  于 12个月前  发布在  其他
关注(0)|答案(2)|浏览(115)

我是ACS的新手,我只是想发送一条SMS消息。官方的MS示例不起作用。我收到一个401未经授权的错误。我已经尝试使用示例中的连接字符串构建客户端,并尝试使用DefaultAzureCredential。这样做会导致未知错误。有人有任何建议如何让ACS SMS SendAsync调用工作或让我知道我做错了什么吗?

qxgroojn

qxgroojn1#

确保将<from-phone-number>设置为您之前使用电话号码功能sms:PhoneNumberCapabilityType.Outbound注册的电话号码。

var capabilities = new PhoneNumberCapabilities(sms:PhoneNumberCapabilityType.Outbound);

// ... register the phone number and use it in the following code:

SmsSendResult sendResult = smsClient.Send(
    from: "<from-phone-number>",
    to: "<to-phone-number>",
    message: "Hello World via SMS"
);

字符串

00jrzges

00jrzges2#

请确保您使用的是付费订阅,而不是试用版,因为它不支持发送短信.我花了一整天跟踪这个花絮下来:
https://learn.microsoft.com/en-us/answers/questions/489986/azure-communication-service-cant-create-number

相关问题