qianxun

package
v1.2.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 16, 2023 License: AGPL-3.0 Imports: 18 Imported by: 0

README

千寻框架

待抽空补充其他接口

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewRequest

func NewRequest() *req.Client

Types

type Framework

type Framework struct {
	ServerPort uint   // 本地服务端口,用于接收回调
	BotWxId    string // 机器人微信ID
	ApiUrl     string // http api地址
	ApiToken   string // http api鉴权token
}

func New

func New(serverPort uint, botWxId, apiUrl, apiToken string) *Framework

func (*Framework) AgreeFriendVerify

func (f *Framework) AgreeFriendVerify(v3, v4, scene string) error

func (*Framework) Callback

func (f *Framework) Callback(handler func(*robot.Event, robot.IFramework))

func (*Framework) GetFriends added in v1.2.0

func (f *Framework) GetFriends(isRefresh bool) ([]*robot.User, error)

func (*Framework) GetGroupMembers added in v1.2.0

func (f *Framework) GetGroupMembers(groupWxId string, isRefresh bool) ([]*robot.User, error)

func (*Framework) GetGroups added in v1.2.0

func (f *Framework) GetGroups(isRefresh bool) ([]*robot.User, error)

func (*Framework) GetMPs added in v1.2.0

func (f *Framework) GetMPs(isRefresh bool) ([]*robot.User, error)

func (*Framework) GetMemePictures

func (f *Framework) GetMemePictures(msg *robot.Message) string

func (*Framework) GetObjectInfo

func (f *Framework) GetObjectInfo(wxId string) (*robot.User, error)

func (*Framework) InviteIntoGroup

func (f *Framework) InviteIntoGroup(groupWxId, wxId string, typ int) error

func (*Framework) SendBusinessCard

func (f *Framework) SendBusinessCard(toWxId, targetWxId string) error

func (*Framework) SendEmoji

func (f *Framework) SendEmoji(toWxId, path string) error

func (*Framework) SendFavorites

func (f *Framework) SendFavorites(toWxId, favoritesId string) error

func (*Framework) SendFile

func (f *Framework) SendFile(toWxId, path string) error

func (*Framework) SendImage

func (f *Framework) SendImage(toWxId, path string) error

func (*Framework) SendMessageRecord

func (f *Framework) SendMessageRecord(toWxId, title string, dataList []map[string]interface{}) error

func (*Framework) SendMessageRecordXML

func (f *Framework) SendMessageRecordXML(toWxId, xmlStr string) error

func (*Framework) SendMiniProgram

func (f *Framework) SendMiniProgram(toWxId, ghId, title, content, imagePath, jumpPath string) error

func (*Framework) SendMusic

func (f *Framework) SendMusic(toWxId, name, author, app, jumpUrl, musicUrl, coverUrl string) error
func (f *Framework) SendShareLink(toWxId, title, desc, imageUrl, jumpUrl string) error

func (*Framework) SendText

func (f *Framework) SendText(toWxId, text string) error

func (*Framework) SendTextAndAt

func (f *Framework) SendTextAndAt(toGroupWxId, toWxId, toWxName, text string) error

func (*Framework) SendVideo

func (f *Framework) SendVideo(toWxId, path string) error

func (*Framework) SendXML

func (f *Framework) SendXML(toWxId, xmlStr string) error

type FriendsListResp added in v1.1.0

type FriendsListResp struct {
	Code   int    `json:"code"`
	Msg    string `json:"msg"`
	Result []struct {
		Wxid                   string `json:"wxid"`
		WxNum                  string `json:"wxNum"`
		Nick                   string `json:"nick"`
		Remark                 string `json:"remark"`
		NickBrief              string `json:"nickBrief"`
		NickWhole              string `json:"nickWhole"`
		RemarkBrief            string `json:"remarkBrief"`
		RemarkWhole            string `json:"remarkWhole"`
		EnBrief                string `json:"enBrief"`
		EnWhole                string `json:"enWhole"`
		V3                     string `json:"v3"`
		Sign                   string `json:"sign"`
		Country                string `json:"country"`
		Province               string `json:"province"`
		City                   string `json:"city"`
		MomentsBackgroudImgUrl string `json:"momentsBackgroudImgUrl"`
		AvatarMinUrl           string `json:"avatarMinUrl"`
		AvatarMaxUrl           string `json:"avatarMaxUrl"`
		Sex                    string `json:"sex"`
		MemberNum              int    `json:"memberNum"`
	} `json:"result"`
	Wxid      string `json:"wxid"`
	Port      int    `json:"port"`
	Pid       int    `json:"pid"`
	Flag      string `json:"flag"`
	Timestamp string `json:"timestamp"`
}

FriendsListResp 获取好友列表响应

type GroupListResp added in v1.1.0

type GroupListResp struct {
	Code   int    `json:"code"`
	Msg    string `json:"msg"`
	Result []struct {
		Wxid                   string `json:"wxid"`
		WxNum                  string `json:"wxNum"`
		Nick                   string `json:"nick"`
		Remark                 string `json:"remark"`
		NickBrief              string `json:"nickBrief"`
		NickWhole              string `json:"nickWhole"`
		RemarkBrief            string `json:"remarkBrief"`
		RemarkWhole            string `json:"remarkWhole"`
		EnBrief                string `json:"enBrief"`
		EnWhole                string `json:"enWhole"`
		V3                     string `json:"v3"`
		Sign                   string `json:"sign"`
		Country                string `json:"country"`
		Province               string `json:"province"`
		City                   string `json:"city"`
		MomentsBackgroudImgUrl string `json:"momentsBackgroudImgUrl"`
		AvatarMinUrl           string `json:"avatarMinUrl"`
		AvatarMaxUrl           string `json:"avatarMaxUrl"`
		Sex                    string `json:"sex"`
		MemberNum              int    `json:"memberNum"`
	} `json:"result"`
	Wxid      string `json:"wxid"`
	Port      int    `json:"port"`
	Pid       int    `json:"pid"`
	Flag      string `json:"flag"`
	Timestamp string `json:"timestamp"`
}

GroupListResp 获取群组列表响应

type GroupMemberListResp added in v1.1.1

type GroupMemberListResp struct {
	Code   int    `json:"code"`
	Msg    string `json:"msg"`
	Result []struct {
		Wxid      string `json:"wxid"`
		GroupNick string `json:"groupNick"`
	} `json:"result"`
	Wxid      string `json:"wxid"`
	Port      int    `json:"port"`
	Pid       int    `json:"pid"`
	Flag      string `json:"flag"`
	Timestamp string `json:"timestamp"`
}

GroupMemberListResp 获取群成员列表响应

type MessageResp

type MessageResp struct {
	Code int    `json:"code"`
	Msg  string `json:"msg"`
}

type ObjectInfoResp

type ObjectInfoResp struct {
	Code   int    `json:"code"`
	Msg    string `json:"msg"`
	Result struct {
		Wxid                   string `json:"wxid"`
		WxNum                  string `json:"wxNum"`
		Nick                   string `json:"nick"`
		Remark                 string `json:"remark"`
		NickBrief              string `json:"nickBrief"`
		NickWhole              string `json:"nickWhole"`
		RemarkBrief            string `json:"remarkBrief"`
		RemarkWhole            string `json:"remarkWhole"`
		EnBrief                string `json:"enBrief"`
		EnWhole                string `json:"enWhole"`
		V3                     string `json:"v3"`
		V4                     string `json:"v4"`
		Sign                   string `json:"sign"`
		Country                string `json:"country"`
		Province               string `json:"province"`
		City                   string `json:"city"`
		MomentsBackgroudImgUrl string `json:"momentsBackgroudImgUrl"`
		AvatarMinUrl           string `json:"avatarMinUrl"`
		AvatarMaxUrl           string `json:"avatarMaxUrl"`
		Sex                    string `json:"sex"`
		MemberNum              int    `json:"memberNum"`
	} `json:"result"`
	Wxid      string `json:"wxid"`
	Port      int    `json:"port"`
	Pid       int    `json:"pid"`
	Flag      string `json:"flag"`
	Timestamp string `json:"timestamp"`
}

ObjectInfoResp 对象可以是好友、群、公众号

type SubscriptionListResp added in v1.1.0

type SubscriptionListResp struct {
	Code   int    `json:"code"`
	Msg    string `json:"msg"`
	Result []struct {
		Wxid                   string `json:"wxid"`
		WxNum                  string `json:"wxNum"`
		Nick                   string `json:"nick"`
		Remark                 string `json:"remark"`
		NickBrief              string `json:"nickBrief"`
		NickWhole              string `json:"nickWhole"`
		RemarkBrief            string `json:"remarkBrief"`
		RemarkWhole            string `json:"remarkWhole"`
		EnBrief                string `json:"enBrief"`
		EnWhole                string `json:"enWhole"`
		V3                     string `json:"v3"`
		Sign                   string `json:"sign"`
		Country                string `json:"country"`
		Province               string `json:"province"`
		City                   string `json:"city"`
		MomentsBackgroudImgUrl string `json:"momentsBackgroudImgUrl"`
		AvatarMinUrl           string `json:"avatarMinUrl"`
		AvatarMaxUrl           string `json:"avatarMaxUrl"`
		Sex                    string `json:"sex"`
		MemberNum              int    `json:"memberNum"`
	} `json:"result"`
	Wxid      string `json:"wxid"`
	Port      int    `json:"port"`
	Pid       int    `json:"pid"`
	Flag      string `json:"flag"`
	Timestamp string `json:"timestamp"`
}

SubscriptionListResp 获取订阅号列表响应

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL