Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type App ¶
App 基本配置
func (*App) AuthAccessToken ¶
func (app *App) AuthAccessToken() (result AuthAccessTokenResult, err error)
AuthAccessToken 获取access_token https://open.work.weixin.qq.com/api/doc/90000/90135/91039
func (*App) GetRedirectUri ¶
GetRedirectUri 构造网页授权链接 https://work.weixin.qq.com/api/doc/90000/90135/91022
func (*App) GetUserInfo ¶
func (app *App) GetUserInfo(param GetUserInfo) (result GetUserInfoResult, err error)
GetUserInfo 获取访问用户身份 https://open.work.weixin.qq.com/api/doc/90000/90135/91023
func (*App) QrConnect ¶
QrConnect 构造独立窗口登录二维码 https://open.work.weixin.qq.com/api/doc/90000/90135/91019
type AuthAccessTokenResult ¶
type AuthAccessTokenResult struct { Errcode int `json:"errcode"` Errmsg string `json:"errmsg"` AccessToken string `json:"access_token"` ExpiresIn int `json:"expires_in"` }
AuthAccessTokenResult 返回参数
type GetUserInfo ¶
type GetUserInfo struct {
Code string `json:"code"`
}
type GetUserInfoResult ¶
type GetUserInfoResult struct { Errcode int `json:"errcode"` // 返回码 Errmsg string `json:"errmsg"` // 对返回码的文本描述内容 UserId string `json:"UserId"` // 成员UserID。若需要获得用户详情信息 OpenId string `json:"OpenId"` // 非企业成员的标识,对当前企业唯一。不超过64字节 DeviceId string `json:"DeviceId"` // 手机设备号(由企业微信在安装时随机生成,删除重装会改变,升级不受影响) ExternalUserid string `json:"external_userid"` // 外部联系人id,当且仅当用户是企业的客户,且跟进人在应用的可见范围内时返回。如果是第三方应用调用,针对同一个客户,同一个服务商不同应用获取到的id相同 }
GetUserInfoResult 返回参数
Click to show internal directories.
Click to hide internal directories.