使用 Twilio Programmable Chat JavaScript SDK 创建用户
Create a user using Twilio Programmable Chat JavaScript SDK
我创建了一个客户端和一个我加入的私有频道。然后尝试使用以下方式添加另一个用户:
Channel.add(identity)
我明白了
50200 - User not found
我知道会员必须首先是用户。如何使用 JavaScript SDK 创建用户?
编辑:
philnash 答案中最重要的部分是 The first time a new Identity is encountered by Chat
。所以,我刚刚使用这个身份创建了另一个客户端,它实际上已经创建了用户。简单。
此处为 Twilio 开发人员布道师。
您没有明确地从 JavaScript SDK 创建用户,from the documentation:
The first time a new Identity is encountered by Chat within a Service instance, a new User instance will be created using the Identity encountered.
If the Identity exists, the existing User record will be used for that session/request. This is true for endpoints and Access Tokens, and for creating Members in a POST to the Members resource.
如果您需要在通过SDK遇到身份之前使用用户,那么您可以create a user using the REST API。
我创建了一个客户端和一个我加入的私有频道。然后尝试使用以下方式添加另一个用户:
Channel.add(identity)
我明白了
50200 - User not found
我知道会员必须首先是用户。如何使用 JavaScript SDK 创建用户?
编辑:
philnash 答案中最重要的部分是 The first time a new Identity is encountered by Chat
。所以,我刚刚使用这个身份创建了另一个客户端,它实际上已经创建了用户。简单。
此处为 Twilio 开发人员布道师。
您没有明确地从 JavaScript SDK 创建用户,from the documentation:
The first time a new Identity is encountered by Chat within a Service instance, a new User instance will be created using the Identity encountered. If the Identity exists, the existing User record will be used for that session/request. This is true for endpoints and Access Tokens, and for creating Members in a POST to the Members resource.
如果您需要在通过SDK遇到身份之前使用用户,那么您可以create a user using the REST API。