0

我按照此处描述的教程进行操作:https ://www.twilio.com/docs/conversations/api/service-resource

以下代码返回“TypeError:无法读取未定义的属性‘create’”

const twilioClient = twilio(twilioAccountSid, twilioAuthToken);
twilioClient.conversations.services
                .create({friendlyName: 'friendly_name'})
                .then(service => console.log(service.sid));

我能够使用对话资源 API,所以我知道我的 twilioClient 是正确的。仅当我使用“.services”时才会出现问题

非常感谢任何帮助。

4

1 回答 1

0

原来答案是升级 Twilio 版本。我在文档中找不到它指定对话/服务 API 调用需要比 3.39.1 更新的位置。但是,升级到 3.72.0 解决了我的问题。

希望这对遇到类似问题的人有所帮助。

于 2022-01-13T08:01:33.547 回答