123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
-
-
- package authorization
-
- import (
- "encoding/json"
- "errors"
-
- wxerr "gitee.com/yansen_zh/wxcomponent/errors"
- "gitee.com/yansen_zh/wxcomponent/utils/request"
- )
-
-
- type ComponentTokenParam struct {
- ComponentAppId string `json:"component_appid"`
- ComponentAppSecret string `json:"component_appsecret"`
- ComponentVerifyTicket string `json:"component_verify_ticket"`
- }
-
-
- type ComponentTokenResult struct {
- wxerr.Error
- ComponentAccessToken string `json:"component_access_token"`
- ExpiresIn int `json:"expires_in"`
- }
-
- const (
- apiComponentToken = "https://apies.weixin.qq.com/cgi-bin/component/api_component_token"
- )
-
-
- func ComponentToken(data ComponentTokenParam) (*ComponentTokenResult, error) {
- if data.ComponentAppId == "" {
- return nil, errors.New("获取令牌 第三方平台的 appid 不能为空")
- }
-
- if data.ComponentAppSecret == "" {
- return nil, errors.New("获取令牌 第三方平台的 appsecret 不能为空")
- }
-
- if data.ComponentVerifyTicket == "" {
- return nil, errors.New("获取令牌 推送 ticket 不能为空")
- }
-
- resp, e2 := request.PostJSON(apiComponentToken, nil, data)
- if e2 != nil {
- return nil, e2
- }
-
- result := ComponentTokenResult{}
- if err := json.Unmarshal(resp, &result); err != nil {
- return nil, err
- }
-
- return &result, nil
- }
|