Skip to content
On this page

setChatwootUser

传递当前登录用户信息给 chatwoot 客户端

前置依赖:initChatwootClient 函数初始化 Chatwoot 客户端

使用方法

ts
import { setChatwootUser } from '@kanjianmusic/fn';

setChatwootUser('user-id-1', {
  name: 'abc',
  email: '[email protected]',
  avatar_url: 'https://example.com/avatar.png'
})

参数

参数类型说明
idstring | number用户 ID
userChatwootUser用户信息
ts
interface ChatwootUser {
  name?: string;
  email?: string;
  avatar_url?: string;
}

用户信息中,至少需要包含 avatar_url, email, name 其中一项。具体信息,请参考 chatwoot 官方文档