-
Notifications
You must be signed in to change notification settings - Fork 280
/
face_identify.go
53 lines (43 loc) · 1.51 KB
/
face_identify.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package weapp
import "github.com/medivhzhan/weapp/v3/request"
const (
apiFaceIdentify = "/cityservice/face/identify/getinfo"
)
// FaceIdentifyResponse 人脸识别结果返回
type FaceIdentifyResponse struct {
request.CommonError
Result int `json:"identify_ret"` // 认证结果
Time uint32 `json:"identify_time"` // 认证时间
Data string `json:"validate_data"` // 用户读的数字(如是读数字)
OpenID string `json:"openid"` // 用户openid
UserIDKey string `json:"user_id_key"` // 用于后台交户表示用户姓名、身份证的凭证
FinishTime uint32 `json:"finish_time"` // 认证结束时间
IDCardNumberMD5 string `json:"id_card_number_md5"` // 身份证号的md5(最后一位X为大写)
NameUTF8MD5 string `json:"name_utf8_md5"` // 姓名MD5
}
// FaceIdentify 获取人脸识别结果
//
// key 小程序 verify_result
func (cli *Client) FaceIdentify(key string) (*FaceIdentifyResponse, error) {
api := baseURL + apiFaceIdentify
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.faceIdentify(api, token, key)
}
func (cli *Client) faceIdentify(api, token, key string) (*FaceIdentifyResponse, error) {
api, err := tokenAPI(api, token)
if err != nil {
return nil, err
}
params := requestParams{
"verify_result": key,
}
res := new(FaceIdentifyResponse)
err = cli.request.Post(api, params, res)
if err != nil {
return nil, err
}
return res, nil
}