UserauthAuthurl2Response.go 536 B

1234567891011
  1. package auth_response
  2. type UserauthAuthurl2Response struct {
  3. // 【认证链接】认证链接
  4. Result string `json:"result,omitempty"`
  5. // 【内网链接】内网链接,后台应用中选择同时返回内/外网地址时返回,参数为内网链接
  6. LocalPageUrl string `json:"localPageUrl,omitempty"`
  7. // 【认证id】认证id,同一用户,每获取一次个人认证链接都会生成一个对应的认证id,后续可通过认证id查询具体某一条认证记录的状态
  8. AuthId string `json:"authId,omitempty"`
  9. }