广告平台(总站长使用)
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.
 
 
 
 
 
 

21 lines
1.3 KiB

  1. package md
  2. type GetComponentAccessToken struct {
  3. ComponentAccessToken string `json:"component_access_token" example:"第三方平台 access_token"`
  4. ExpiresIn int `json:"expires_in" example:"有效期,单位:秒"`
  5. }
  6. type GetPreAuthCode struct {
  7. PreAuthCode string `json:"pre_auth_code" example:"预授权码"`
  8. ExpiresIn int `json:"expires_in" example:"有效期,单位:秒"`
  9. }
  10. type GetAuthorizerAccessTokenByAuthCode struct {
  11. AuthorizationInfo struct {
  12. AuthorizerAppid string `json:"authorizer_appid" example:"授权方 appid"`
  13. AuthorizerAccessToken string `json:"authorizer_access_token" example:"接口调用令牌"`
  14. ExpiresIn int `json:"expires_in" example:"authorizer_access_token 的有效期(在授权的公众号/小程序具备API权限时,才有此返回值),单位:秒"`
  15. AuthorizerRefreshToken string `json:"authorizer_refresh_token" example:"刷新令牌(在授权的公众号具备API权限时,才有此返回值),刷新令牌主要用于第三方平台获取和刷新已授权用户的 authorizer_access_token。一旦丢失,只能让用户重新授权,才能再次拿到新的刷新令牌。用户重新授权后,之前的刷新令牌会失效"`
  16. } `json:"authorization_info" example:"预授权码"`
  17. }