Twilio Chat 用户创建 friendlyName

Twilio Chat User creation friendlyName

我正在尝试制作聊天沙盒 api,也就是创建用户、频道并将用户添加到频道。问题是每次我调用 restApi 创建新用户时,它都不会获取属性或 friendlyName。代码如下:

$user->chat->services($serviceSid)->users->create(
        array(
            'identity'     => $identity,
            'friendlyName' => $friendlyName,
            'attributes'   => $attributes,
            'roleSid'      => $roleSid
        )
    );

谢谢。

这里是 Twilio 开发人员布道者。

您创建用户的代码不正确。 create 将标识作为第一个参数,然后将数组中的可选参数作为第二个参数。试试这个:

$user->chat->services($serviceSid)->users->create(
    $identity,
    array(
        'friendlyName' => $friendlyName,
        'attributes'   => $attributes,
        'roleSid'      => $roleSid
    )
);

如果有帮助请告诉我。