0
Twilio最近停止了他們的配置文件SID,轉而使用新的Room Rest API。如何使用Twilio新Room Rest API而不是Configuration Profile SID?
以前我用來創建一個配置文件SID授予訪問令牌,然後通過訪問令牌JavaScript來連接參與者:
$callerCallId = substr(md5(microtime()), 0, 15);
$callerAccessToken = new Services_Twilio_AccessToken($accountSid, $apiKeySid, $apiKeySecret, 3600, $callerCallId);
$callerConversationGrant = new Services_Twilio_Auth_ConversationsGrant();
$callerConversationGrant->setConfigurationProfileSid($configurationProfileSid);
$callerAccessToken->addGrant($callerConversationGrant);
$callerToken = $callerAccessToken->toJWT();
有了新的REST API,我該怎麼辦? Twilio的官方文檔根本沒有幫助。