Browse Source

CLOUDAUTH SDK Auto Released By chugang.cg,Version:1.25.3

Signed-off-by: yixiong.jxy <yixiong.jxy@alibaba-inc.com>
yixiong.jxy 7 years ago
parent
commit
6b2114e129

+ 4 - 0
ChangeLog.txt

@@ -1,3 +1,7 @@
+2018-08-15 Version: 1.25.3
+1, Fix bug in GetMaterials API.
+2, GetVerifyToken added a new param VerifyConfigs
+
 2018-08-15 Version: 1.25.2
 1, Add domain operation api AddLiveDomain,DeleteLiveDomain,DescribeLiveDomainDetail,StartLiveDomain,StopLiveDomain.
 2, Add certificate operation api DescribeLiveCertificateDetail,DescribeLiveCertificateList,SetLiveDomainCertificate.

+ 1 - 1
services/cloudauth/compare_faces.go

@@ -99,7 +99,7 @@ func CreateCompareFacesRequest() (request *CompareFacesRequest) {
 	request = &CompareFacesRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Cloudauth", "2018-07-03", "CompareFaces", "cloudauth", "openAPI")
+	request.InitWithApiInfo("Cloudauth", "2018-08-07", "CompareFaces", "cloudauth", "openAPI")
 	return
 }
 

+ 1 - 1
services/cloudauth/detect_face_attributes.go

@@ -101,7 +101,7 @@ func CreateDetectFaceAttributesRequest() (request *DetectFaceAttributesRequest)
 	request = &DetectFaceAttributesRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Cloudauth", "2018-07-03", "DetectFaceAttributes", "cloudauth", "openAPI")
+	request.InitWithApiInfo("Cloudauth", "2018-08-07", "DetectFaceAttributes", "cloudauth", "openAPI")
 	return
 }
 

+ 1 - 1
services/cloudauth/get_materials.go

@@ -97,7 +97,7 @@ func CreateGetMaterialsRequest() (request *GetMaterialsRequest) {
 	request = &GetMaterialsRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Cloudauth", "2018-07-03", "GetMaterials", "cloudauth", "openAPI")
+	request.InitWithApiInfo("Cloudauth", "2018-08-07", "GetMaterials", "cloudauth", "openAPI")
 	return
 }
 

+ 1 - 1
services/cloudauth/get_status.go

@@ -97,7 +97,7 @@ func CreateGetStatusRequest() (request *GetStatusRequest) {
 	request = &GetStatusRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Cloudauth", "2018-07-03", "GetStatus", "cloudauth", "openAPI")
+	request.InitWithApiInfo("Cloudauth", "2018-08-07", "GetStatus", "cloudauth", "openAPI")
 	return
 }
 

+ 2 - 1
services/cloudauth/get_verify_token.go

@@ -81,6 +81,7 @@ type GetVerifyTokenRequest struct {
 	Biz             string           `position:"Query" name:"Biz"`
 	SourceIp        string           `position:"Query" name:"SourceIp"`
 	Binding         string           `position:"Query" name:"Binding"`
+	VerifyConfigs   string           `position:"Query" name:"VerifyConfigs"`
 	TicketId        string           `position:"Query" name:"TicketId"`
 }
 
@@ -99,7 +100,7 @@ func CreateGetVerifyTokenRequest() (request *GetVerifyTokenRequest) {
 	request = &GetVerifyTokenRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Cloudauth", "2018-07-03", "GetVerifyToken", "cloudauth", "openAPI")
+	request.InitWithApiInfo("Cloudauth", "2018-08-07", "GetVerifyToken", "cloudauth", "openAPI")
 	return
 }
 

+ 4 - 2
services/cloudauth/struct_data.go

@@ -23,16 +23,18 @@ type Data struct {
 	FacePic              string       `json:"FacePic" xml:"FacePic"`
 	IdCardExpiry         string       `json:"IdCardExpiry" xml:"IdCardExpiry"`
 	AuditConclusions     string       `json:"AuditConclusions" xml:"AuditConclusions"`
+	IdCardStartDate      string       `json:"IdCardStartDate" xml:"IdCardStartDate"`
 	IdCardType           string       `json:"IdCardType" xml:"IdCardType"`
 	SimilarityScore      float64      `json:"SimilarityScore" xml:"SimilarityScore"`
 	IdentificationNumber string       `json:"IdentificationNumber" xml:"IdentificationNumber"`
 	Address              string       `json:"Address" xml:"Address"`
+	EthnicGroup          string       `json:"EthnicGroup" xml:"EthnicGroup"`
 	Sex                  string       `json:"Sex" xml:"Sex"`
-	ImgWidth             int          `json:"ImgWidth" xml:"ImgWidth"`
 	IdCardBackPic        string       `json:"IdCardBackPic" xml:"IdCardBackPic"`
+	ImgWidth             int          `json:"ImgWidth" xml:"ImgWidth"`
 	CloudauthPageUrl     string       `json:"CloudauthPageUrl" xml:"CloudauthPageUrl"`
-	ImgHeight            int          `json:"ImgHeight" xml:"ImgHeight"`
 	StatusCode           int          `json:"StatusCode" xml:"StatusCode"`
+	ImgHeight            int          `json:"ImgHeight" xml:"ImgHeight"`
 	ConfidenceThresholds string       `json:"ConfidenceThresholds" xml:"ConfidenceThresholds"`
 	StsToken             StsToken     `json:"StsToken" xml:"StsToken"`
 	VerifyToken          VerifyToken  `json:"VerifyToken" xml:"VerifyToken"`

+ 1 - 1
services/cloudauth/submit_materials.go

@@ -103,7 +103,7 @@ func CreateSubmitMaterialsRequest() (request *SubmitMaterialsRequest) {
 	request = &SubmitMaterialsRequest{
 		RpcRequest: &requests.RpcRequest{},
 	}
-	request.InitWithApiInfo("Cloudauth", "2018-07-03", "SubmitMaterials", "cloudauth", "openAPI")
+	request.InitWithApiInfo("Cloudauth", "2018-08-07", "SubmitMaterials", "cloudauth", "openAPI")
 	return
 }