用户频道/未知子资源

时间:2017-06-18 06:07:58

标签: twilio twilio-api twilio-php

新添加的(05/02)用户频道资源似乎已经死亡。当我尝试访问此数据时,我总是收到一条错误消息“Unknown subresource channels”。

任何人都可以确认此功能确实有效吗?

我尝试过几种不同的方式检索它:

$channels = $this->client->chat
  ->services($this->ipmSid)
  ->users($memberId)
  ->channels
  ->read(); // I've also tried ->fetch();

然后我尝试使用提取成员时直接将其提供给curl时提供的链接:

$member = $this->client->chat
  ->services($this->ipmSid)
  ->users($user_id)
  ->fetch();

$url = $member->links['user_channels'];
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($process, CURLOPT_USERPWD, $this->sid . ":" . $this->token);
$resp = curl_exec($ch);

两种方式都会导致500错误“Twilio Exception Unknown Subresource Channels”。

感谢您的任何提示!

1 个答案:

答案 0 :(得分:0)

没有记录好。您需要使用userChannels。

channels = $this->client->chat
    ->services($this->ipmSid)
    ->users($memberId)
    ->userChannels
    ->read();