我是 twilio 的新手。
我正在尝试使用 CallResource.Create(to, from, url: _url);
关于 URL:我有 Azure 帐户。我已经上传了自定义 xml。下面你可以找到我的 xml
<?xml version="1.0" encoding="UTF-8"?>
<Response>
<Say voice="alice">Thanks for trying our documentation.Enjoy!</Say>
<Play>http://demo.twilio.com/docs/classic.mp3</Play>
</Response>
为了测试我正在使用测试消息。 http://demo.twilio.com/docs/classic.mp3,将来我计划将自定义 mp3 文件也上传到 azure 文件存储。
不幸的是,我遇到了例外:
<?xml version="1.0" encoding="utf-8"?>
<Error>
<Code>UnsupportedHttpVerb</Code>
<Message>The resource doesn't support specified Http Verb.
RequestId:907409a8-d01a-0051-1c43-1f4bf1000000
Time:2018-07-19T09:30:41.8204847Z</Message>
</Error>
为文件服务重新分配 CORS: 它是
是否有描述如何配置 azure 环境以与 twilio 集成的要求的文档/指南?
非常感谢您的帮助。