You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
alipayopen/alipay.user.info.share.go

50 lines
2.1 KiB

2 years ago
package alipayopen
import (
"context"
5 months ago
"go.dtapp.net/gojson"
2 years ago
"go.dtapp.net/gorequest"
)
type AlipayUserInfoShareResponse struct {
AlipayUserInfoShareResponse struct {
AlipayUserId string `json:"alipay_user_id,omitempty"`
UserId string `json:"user_id"` // 支付宝用户的唯一标识。以2088开头的16位数字。
AccessToken string `json:"access_token"` // 访问令牌。通过该令牌调用需要授权类接口
ExpiresIn string `json:"expires_in"` // 访问令牌的有效时间,单位是秒。
RefreshToken string `json:"refresh_token"` // 刷新令牌。通过该令牌可以刷新access_token
ReExpiresIn string `json:"re_expires_in"` // 刷新令牌的有效时间,单位是秒。
AuthStart string `json:"auth_start"` // 授权token开始时间作为有效期计算的起点
} `json:"alipay_system_oauth_token_response"`
}
type AlipayUserInfoShareResult struct {
5 months ago
Result AlipayUserInfoShareResponse // 结果
Body []byte // 内容
Http gorequest.Response // 请求
2 years ago
}
5 months ago
func newAlipayUserInfoShareResult(result AlipayUserInfoShareResponse, body []byte, http gorequest.Response) *AlipayUserInfoShareResult {
return &AlipayUserInfoShareResult{Result: result, Body: body, Http: http}
2 years ago
}
// AlipayUserInfoShare 换取授权访问令牌
// https://opendocs.alipay.com/open/02xtlb
5 months ago
func (c *Client) AlipayUserInfoShare(ctx context.Context, authToken string, notMustParams ...gorequest.Params) (*AlipayUserInfoShareResult, ApiError, error) {
2 years ago
// 参数
5 months ago
params := gorequest.NewParamsWith(notMustParams...)
2 years ago
params.Set("auth_token", authToken)
// 请求
request, err := c.request(ctx, c.newParamsWithType("alipay.user.info.share", params))
if err != nil {
5 months ago
return newAlipayUserInfoShareResult(AlipayUserInfoShareResponse{}, request.ResponseBody, request), ApiError{}, err
2 years ago
}
// 定义
var response AlipayUserInfoShareResponse
5 months ago
err = gojson.Unmarshal(request.ResponseBody, &response)
2 years ago
// 错误
var apiError ApiError
5 months ago
err = gojson.Unmarshal(request.ResponseBody, &apiError)
return newAlipayUserInfoShareResult(response, request.ResponseBody, request), apiError, err
2 years ago
}