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