我正在使用AWS Alexa for Business Go SDK,虽然有CreateContact
,DeleteContact
,GetContact
,SearchContacts
的功能,但是没有ListContacts
的功能,而还有其他对象ListConferenceProviders
的列表API。
https://docs.aws.amazon.com/sdk-for-go/api/service/alexaforbusiness/
如何获得Alexa for Business的联系人列表?
最佳答案
虽然没有ListContacts
API,但可以将SearchContacts
API与 SearchContactsInput
中的空过滤器片一起使用,如下所示:
resp, err := svc.SearchContacts(
&alexaforbusiness.SearchContactsInput{})
为了进行测试,即使已填充
Filter
,也可以使用带有空Values
slice 的Key
。关于go - 如何列出Alexa for Business的联系人?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54875481/