提问人:Ping 提问时间:1/16/2021 最后编辑:GrokifyPing 更新时间:1/21/2021 访问量:53
如何从 RingCentral 短信响应中获取 conversationId?
How do I get the conversationId from a RingCentral SMS response?
问:
我正在PHP中使用RingCentral WebRTC客户端构建一个简单的SMS发送模块。我可以成功发送消息,并得到一个有效的JSON响应对象,当我回显它时,我可以看到conversationId,但我似乎无法将其回显到变量中。
这是我的 API 调用:
$resp = $this->platform->post('/account/~/extension/~/sms',
array(
'from' => array ('phoneNumber' => $this->ringcentral_username),
'to' => array(array('phoneNumber' => $phone)),
'text' => $message
));
我可以看到:
"conversationId" : 1234567890,
在响应对象中,但未找到。我该如何将其拉出?$resp->conversationId
答:
1赞
Ping
1/16/2021
#1
我找到了:
$resp->json()->conversationId
上一个:安装特定版本的 mPDF
评论