我尝试检索频道,然后将用户添加到此频道。
使用API调用API https://www.twilio.com/docs/api/ip-messaging/rest/channels#retrieve-a-channel
返回
{&#34; URI&#34;:&#34; / V1 /服务/ ISdb4f1f1479164d12b532f935aaca8619 /频道/ qwe123&#34;&#34; SID&#34;:&#34; qwe123&#34;} < / p>
这是无用的,因为我需要频道Sid来添加用户。
我的代码:
$uniqueName = 'qwe123';
$this->client = new \IPMessaging_Services_Twilio($params['accountSid'],$params['authToken']);
$service = $this->client->services->get($params['serviceSid']);
$channel = $service->channels->get($uniqueName);
print $channel; exit;
答案 0 :(得分:1)
UniqueName的问题是由于存在&#34;。&#34;在UniqueName值中。 REST API将其解释为扩展。请尝试将您的UniqueName值更改为&#34; subdomain:engagement_test&#34;