12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * Copyright (c) 2022 Yansen Zhang
- * wxcomponent is licensed under Mulan PSL v2.
- * You can use this software according to the terms and conditions of the Mulan PSL v2.
- * You may obtain a copy of Mulan PSL v2 at:
- * http://license.coscl.org.cn/MulanPSL2
- * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
- * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
- * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
- * See the Mulan PSL v2 for more details.
- **/
-
- package authorization
-
- import (
- "encoding/json"
- "errors"
- "net/url"
-
- wxerr "gitee.com/yansen_zh/wxcomponent/errors"
- "gitee.com/yansen_zh/wxcomponent/utils/request"
- )
-
- // PreAuthCodeParam 获取预授权码参数
- type PreAuthCodeParam struct {
- ComponentAppId string `json:"component_appid"`
- }
-
- // PreAuthCodeResult 获取预授权码结果
- type PreAuthCodeResult struct {
- wxerr.Error
- PreAuthCode string `json:"pre_auth_code"`
- ExpiresIn int `json:"expires_in"`
- }
-
- const (
- apiCreatePreauthcode = "https://apies.weixin.qq.com/cgi-bin/component/api_create_preauthcode"
- )
-
- // CreatePreAuthCode 获取预授权码
- func CreatePreAuthCode(componentAccessToken string, data PreAuthCodeParam) (*PreAuthCodeResult, error) {
- if componentAccessToken == "" {
- return nil, errors.New("获取预授权码 第三方平台的 component_access_token 不能为空")
- }
-
- if data.ComponentAppId == "" {
- return nil, errors.New("获取预授权码 第三方平台的 appid 不能为空")
- }
-
- queryParam := url.Values{}
- queryParam.Set("component_access_token", componentAccessToken)
-
- resp, e2 := request.PostJSON(apiCreatePreauthcode, &queryParam, data)
- if e2 != nil {
- return nil, e2
- }
-
- result := PreAuthCodeResult{}
- if err := json.Unmarshal(resp, &result); err != nil {
- return nil, err
- }
-
- return &result, nil
- }
|