diff --git a/docs/product/easemob_user_token.md b/docs/product/easemob_user_token.md index 2f674d01e..eb77efd65 100644 --- a/docs/product/easemob_user_token.md +++ b/docs/product/easemob_user_token.md @@ -206,7 +206,7 @@ b. 设置过期时间,单位为秒。 ttl = 600 c. 生成 signature,将 clientId、appkey、userId、curTime、ttl、clientSecret 六个字段拼成一个字符串,进行 sha1 编码并将编码内容得到的字节转换为十六进制字符串。 str = clientId + appkey + userId + curTime + ttl + clientSecret - shaBytes = sha1(str) + sha256hash = sha256.Sum256([]byte(str)) signature = fmt.Sprintf("%x", shaBytes) d. 组装为 json。 json = {"signature": "xx", "appkey":"xx#xx", "userId":"xx", "curTime":1686207557, "ttl": 600}