新增接口

This commit is contained in:
xcx 2020-04-07 16:43:03 +08:00
parent dd3d4f1376
commit 04722986d1
1 changed files with 16 additions and 0 deletions

View File

@ -31,6 +31,21 @@ func UserSig(identifier string, expire int) string {
return sig
}
//单个账号导入
type AccountImportReq struct {
Identifier string `json:"Identifier"` //:"test",
Nick string `json:"Nick"` //:"test",
FaceUrl string `json:"FaceUrl"` //:"http://www.qq.com"
}
type AccountImportAns struct{}
func AccountImport(r *AccountImportReq) (*AccountImportAns, error) {
a := AccountImportAns{}
err := Api("im_open_login_svc", "account_import", r, &a)
return &a, err
}
//建群
//https://cloud.tencent.com/document/product/269/1615
type GroupCreateReq struct {
OwnerAccount string `json:"Owner_Account"`
@ -48,6 +63,7 @@ func GroupCreate(r *GroupCreateReq) (*GroupCreateAns, error) {
return &a, err
}
//资料设置
type ProfileSetReq struct {
FromAccount string `json:"From_Account"`
ProfileItem []*ProfileSetReqItem `json:"ProfileItem"`