我按照此处描述的教程进行操作: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”时才会出现问题
非常感谢任何帮助。