我試圖檢索頻道,並且將用戶添加到此頻道。twilio ip messaging REST API檢索頻道返回無用結果
電話API與 https://www.twilio.com/docs/api/ip-messaging/rest/channels#retrieve-a-channel
回報
{ 「URI」: 「/ V1 /服務/ ISdb4f1f1479164d12b532f935aaca8619 /渠道/ qwe123」, 「SID」: 「qwe123」}
這是無用的,因爲我需要通道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;
這似乎是我們的PHP庫中的一個錯誤。對於那個很抱歉。我們正在考慮修復它。 – philnash
謝謝你的回答。此外,我有興趣通過獨特的名稱獲取頻道,如文檔「GET/Services/{Instance SID}/Channels/{Unique Name}」中所述。正如我發現它即使捲曲也不工作,但我可能被誤認爲 –
你看到的捲曲結果是什麼? – philnash