腾讯云即时通信IM接口golang封装
https://github.com/xucx/txim
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
4 months ago | |
---|---|---|
api | 1 year ago | |
callback | 4 months ago | |
common | 1 year ago | |
.gitignore | 1 year ago | |
README.md | 1 year ago | |
go.mod | 1 year ago | |
go.sum | 1 year ago | |
txim.go | 1 year ago |
README.md
腾讯云即时通讯IM SDK
食用方式
package main
import (
"fmt"
"gitee.ltd/lxh/txim"
"gitee.ltd/lxh/txim/api"
"gitee.ltd/lxh/txim/api/param"
)
func main() {
sdkAppId := 0000
sdkKey := "xxxxx"
// 初始化SDK
txim.Init(sdkAppId, sdkKey, "administrator")
// 导入账户
data, err := api.AccountImport(¶m.AccountImportReq{
Identifier: "lxh",
Nick: "李寻欢",
})
if err != nil {
fmt.Println(err)
return
}
fmt.Printf("%+v\n", data)
}