// This file is auto-generated, don't edit it. Thanks. using System; using System.Collections; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; using Tea; using Tea.Utils; using Alipay.EasySDK.Member.Identification.Models; namespace Alipay.EasySDK.Member.Identification { public class Client { protected Alipay.EasySDK.Kernel.Client _kernel; public Client(Alipay.EasySDK.Kernel.Client kernel) { this._kernel = kernel; } public AlipayUserCertifyOpenInitializeResponse Init(string outerOrderNo, string bizCode, IdentityParam identityParam, MerchantConfig merchantConfig) { identityParam.Validate(); merchantConfig.Validate(); Dictionary runtime_ = new Dictionary { {"connectTimeout", 15000}, {"readTimeout", 15000}, {"retry", new Dictionary { {"maxAttempts", 0}, }}, }; TeaRequest _lastRequest = null; Exception _lastException = null; long _now = System.DateTime.Now.Millisecond; int _retryTimes = 0; while (TeaCore.AllowRetry((IDictionary) runtime_["retry"], _retryTimes, _now)) { if (_retryTimes > 0) { int backoffTime = TeaCore.GetBackoffTime((IDictionary)runtime_["backoff"], _retryTimes); if (backoffTime > 0) { TeaCore.Sleep(backoffTime); } } _retryTimes = _retryTimes + 1; try { TeaRequest request_ = new TeaRequest(); Dictionary systemParams = new Dictionary { {"method", "alipay.user.certify.open.initialize"}, {"app_id", this._kernel.GetConfig("appId")}, {"timestamp", this._kernel.GetTimestamp()}, {"format", "json"}, {"version", "1.0"}, {"alipay_sdk", this._kernel.GetSdkVersion()}, {"charset", "UTF-8"}, {"sign_type", this._kernel.GetConfig("signType")}, {"app_cert_sn", this._kernel.GetMerchantCertSN()}, {"alipay_root_cert_sn", this._kernel.GetAlipayRootCertSN()}, }; Dictionary bizParams = new Dictionary { {"outer_order_no", outerOrderNo}, {"biz_code", bizCode}, {"identity_param", identityParam}, {"merchant_config", merchantConfig}, }; Dictionary textParams = new Dictionary(){}; request_.Protocol = this._kernel.GetConfig("protocol"); request_.Method = "POST"; request_.Pathname = "/gateway.do"; request_.Headers = new Dictionary { {"host", this._kernel.GetConfig("gatewayHost")}, {"content-type", "application/x-www-form-urlencoded;charset=utf-8"}, }; request_.Query = this._kernel.SortMap(TeaConverter.merge ( new Dictionary() { {"sign", this._kernel.Sign(systemParams, bizParams, textParams, this._kernel.GetConfig("merchantPrivateKey"))}, }, systemParams, textParams )); request_.Body = TeaCore.BytesReadable(this._kernel.ToUrlEncodedRequestBody(bizParams)); _lastRequest = request_; TeaResponse response_ = TeaCore.DoAction(request_, runtime_); Dictionary respMap = this._kernel.ReadAsJson(response_, "alipay.user.certify.open.initialize"); if (this._kernel.IsCertMode()) { if (this._kernel.Verify(respMap, this._kernel.ExtractAlipayPublicKey(this._kernel.GetAlipayCertSN(respMap)))) { return TeaModel.ToObject(this._kernel.ToRespModel(respMap)); } } else { if (this._kernel.Verify(respMap, this._kernel.GetConfig("alipayPublicKey"))) { return TeaModel.ToObject(this._kernel.ToRespModel(respMap)); } } throw new TeaException(new Dictionary { {"message", "验签失败,请检查支付宝公钥设置是否正确。"}, }); } catch (Exception e) { if (TeaCore.IsRetryable(e)) { _lastException = e; continue; } throw e; } } throw new TeaUnretryableException(_lastRequest, _lastException); } public async Task InitAsync(string outerOrderNo, string bizCode, IdentityParam identityParam, MerchantConfig merchantConfig) { identityParam.Validate(); merchantConfig.Validate(); Dictionary runtime_ = new Dictionary { {"connectTimeout", 15000}, {"readTimeout", 15000}, {"retry", new Dictionary { {"maxAttempts", 0}, }}, }; TeaRequest _lastRequest = null; Exception _lastException = null; long _now = System.DateTime.Now.Millisecond; int _retryTimes = 0; while (TeaCore.AllowRetry((IDictionary) runtime_["retry"], _retryTimes, _now)) { if (_retryTimes > 0) { int backoffTime = TeaCore.GetBackoffTime((IDictionary)runtime_["backoff"], _retryTimes); if (backoffTime > 0) { TeaCore.Sleep(backoffTime); } } _retryTimes = _retryTimes + 1; try { TeaRequest request_ = new TeaRequest(); Dictionary systemParams = new Dictionary { {"method", "alipay.user.certify.open.initialize"}, {"app_id", this._kernel.GetConfig("appId")}, {"timestamp", this._kernel.GetTimestamp()}, {"format", "json"}, {"version", "1.0"}, {"alipay_sdk", this._kernel.GetSdkVersion()}, {"charset", "UTF-8"}, {"sign_type", this._kernel.GetConfig("signType")}, {"app_cert_sn", this._kernel.GetMerchantCertSN()}, {"alipay_root_cert_sn", this._kernel.GetAlipayRootCertSN()}, }; Dictionary bizParams = new Dictionary { {"outer_order_no", outerOrderNo}, {"biz_code", bizCode}, {"identity_param", identityParam}, {"merchant_config", merchantConfig}, }; Dictionary textParams = new Dictionary(){}; request_.Protocol = this._kernel.GetConfig("protocol"); request_.Method = "POST"; request_.Pathname = "/gateway.do"; request_.Headers = new Dictionary { {"host", this._kernel.GetConfig("gatewayHost")}, {"content-type", "application/x-www-form-urlencoded;charset=utf-8"}, }; request_.Query = this._kernel.SortMap(TeaConverter.merge ( new Dictionary() { {"sign", this._kernel.Sign(systemParams, bizParams, textParams, this._kernel.GetConfig("merchantPrivateKey"))}, }, systemParams, textParams )); request_.Body = TeaCore.BytesReadable(this._kernel.ToUrlEncodedRequestBody(bizParams)); _lastRequest = request_; TeaResponse response_ = await TeaCore.DoActionAsync(request_, runtime_); Dictionary respMap = await this._kernel.ReadAsJsonAsync(response_, "alipay.user.certify.open.initialize"); if (this._kernel.IsCertMode()) { if (this._kernel.Verify(respMap, this._kernel.ExtractAlipayPublicKey(this._kernel.GetAlipayCertSN(respMap)))) { return TeaModel.ToObject(this._kernel.ToRespModel(respMap)); } } else { if (this._kernel.Verify(respMap, this._kernel.GetConfig("alipayPublicKey"))) { return TeaModel.ToObject(this._kernel.ToRespModel(respMap)); } } throw new TeaException(new Dictionary { {"message", "验签失败,请检查支付宝公钥设置是否正确。"}, }); } catch (Exception e) { if (TeaCore.IsRetryable(e)) { _lastException = e; continue; } throw e; } } throw new TeaUnretryableException(_lastRequest, _lastException); } public AlipayUserCertifyOpenQueryResponse Query(string certifyId) { Dictionary runtime_ = new Dictionary { {"connectTimeout", 15000}, {"readTimeout", 15000}, {"retry", new Dictionary { {"maxAttempts", 0}, }}, }; TeaRequest _lastRequest = null; Exception _lastException = null; long _now = System.DateTime.Now.Millisecond; int _retryTimes = 0; while (TeaCore.AllowRetry((IDictionary) runtime_["retry"], _retryTimes, _now)) { if (_retryTimes > 0) { int backoffTime = TeaCore.GetBackoffTime((IDictionary)runtime_["backoff"], _retryTimes); if (backoffTime > 0) { TeaCore.Sleep(backoffTime); } } _retryTimes = _retryTimes + 1; try { TeaRequest request_ = new TeaRequest(); Dictionary systemParams = new Dictionary { {"method", "alipay.user.certify.open.query"}, {"app_id", this._kernel.GetConfig("appId")}, {"timestamp", this._kernel.GetTimestamp()}, {"format", "json"}, {"version", "1.0"}, {"alipay_sdk", this._kernel.GetSdkVersion()}, {"charset", "UTF-8"}, {"sign_type", this._kernel.GetConfig("signType")}, {"app_cert_sn", this._kernel.GetMerchantCertSN()}, {"alipay_root_cert_sn", this._kernel.GetAlipayRootCertSN()}, }; Dictionary bizParams = new Dictionary { {"certify_id", certifyId}, }; Dictionary textParams = new Dictionary(){}; request_.Protocol = this._kernel.GetConfig("protocol"); request_.Method = "POST"; request_.Pathname = "/gateway.do"; request_.Headers = new Dictionary { {"host", this._kernel.GetConfig("gatewayHost")}, {"content-type", "application/x-www-form-urlencoded;charset=utf-8"}, }; request_.Query = this._kernel.SortMap(TeaConverter.merge ( new Dictionary() { {"sign", this._kernel.Sign(systemParams, bizParams, textParams, this._kernel.GetConfig("merchantPrivateKey"))}, }, systemParams, textParams )); request_.Body = TeaCore.BytesReadable(this._kernel.ToUrlEncodedRequestBody(bizParams)); _lastRequest = request_; TeaResponse response_ = TeaCore.DoAction(request_, runtime_); Dictionary respMap = this._kernel.ReadAsJson(response_, "alipay.user.certify.open.query"); if (this._kernel.IsCertMode()) { if (this._kernel.Verify(respMap, this._kernel.ExtractAlipayPublicKey(this._kernel.GetAlipayCertSN(respMap)))) { return TeaModel.ToObject(this._kernel.ToRespModel(respMap)); } } else { if (this._kernel.Verify(respMap, this._kernel.GetConfig("alipayPublicKey"))) { return TeaModel.ToObject(this._kernel.ToRespModel(respMap)); } } throw new TeaException(new Dictionary { {"message", "验签失败,请检查支付宝公钥设置是否正确。"}, }); } catch (Exception e) { if (TeaCore.IsRetryable(e)) { _lastException = e; continue; } throw e; } } throw new TeaUnretryableException(_lastRequest, _lastException); } public async Task QueryAsync(string certifyId) { Dictionary runtime_ = new Dictionary { {"connectTimeout", 15000}, {"readTimeout", 15000}, {"retry", new Dictionary { {"maxAttempts", 0}, }}, }; TeaRequest _lastRequest = null; Exception _lastException = null; long _now = System.DateTime.Now.Millisecond; int _retryTimes = 0; while (TeaCore.AllowRetry((IDictionary) runtime_["retry"], _retryTimes, _now)) { if (_retryTimes > 0) { int backoffTime = TeaCore.GetBackoffTime((IDictionary)runtime_["backoff"], _retryTimes); if (backoffTime > 0) { TeaCore.Sleep(backoffTime); } } _retryTimes = _retryTimes + 1; try { TeaRequest request_ = new TeaRequest(); Dictionary systemParams = new Dictionary { {"method", "alipay.user.certify.open.query"}, {"app_id", this._kernel.GetConfig("appId")}, {"timestamp", this._kernel.GetTimestamp()}, {"format", "json"}, {"version", "1.0"}, {"alipay_sdk", this._kernel.GetSdkVersion()}, {"charset", "UTF-8"}, {"sign_type", this._kernel.GetConfig("signType")}, {"app_cert_sn", this._kernel.GetMerchantCertSN()}, {"alipay_root_cert_sn", this._kernel.GetAlipayRootCertSN()}, }; Dictionary bizParams = new Dictionary { {"certify_id", certifyId}, }; Dictionary textParams = new Dictionary(){}; request_.Protocol = this._kernel.GetConfig("protocol"); request_.Method = "POST"; request_.Pathname = "/gateway.do"; request_.Headers = new Dictionary { {"host", this._kernel.GetConfig("gatewayHost")}, {"content-type", "application/x-www-form-urlencoded;charset=utf-8"}, }; request_.Query = this._kernel.SortMap(TeaConverter.merge ( new Dictionary() { {"sign", this._kernel.Sign(systemParams, bizParams, textParams, this._kernel.GetConfig("merchantPrivateKey"))}, }, systemParams, textParams )); request_.Body = TeaCore.BytesReadable(this._kernel.ToUrlEncodedRequestBody(bizParams)); _lastRequest = request_; TeaResponse response_ = await TeaCore.DoActionAsync(request_, runtime_); Dictionary respMap = await this._kernel.ReadAsJsonAsync(response_, "alipay.user.certify.open.query"); if (this._kernel.IsCertMode()) { if (this._kernel.Verify(respMap, this._kernel.ExtractAlipayPublicKey(this._kernel.GetAlipayCertSN(respMap)))) { return TeaModel.ToObject(this._kernel.ToRespModel(respMap)); } } else { if (this._kernel.Verify(respMap, this._kernel.GetConfig("alipayPublicKey"))) { return TeaModel.ToObject(this._kernel.ToRespModel(respMap)); } } throw new TeaException(new Dictionary { {"message", "验签失败,请检查支付宝公钥设置是否正确。"}, }); } catch (Exception e) { if (TeaCore.IsRetryable(e)) { _lastException = e; continue; } throw e; } } throw new TeaUnretryableException(_lastRequest, _lastException); } public AlipayUserCertifyOpenCertifyResponse Certify(string certifyId) { Dictionary systemParams = new Dictionary { {"method", "alipay.user.certify.open.certify"}, {"app_id", this._kernel.GetConfig("appId")}, {"timestamp", this._kernel.GetTimestamp()}, {"format", "json"}, {"version", "1.0"}, {"alipay_sdk", this._kernel.GetSdkVersion()}, {"charset", "UTF-8"}, {"sign_type", this._kernel.GetConfig("signType")}, {"app_cert_sn", this._kernel.GetMerchantCertSN()}, {"alipay_root_cert_sn", this._kernel.GetAlipayRootCertSN()}, }; Dictionary bizParams = new Dictionary { {"certify_id", certifyId}, }; Dictionary textParams = new Dictionary(){}; string sign = this._kernel.Sign(systemParams, bizParams, textParams, this._kernel.GetConfig("merchantPrivateKey")); Dictionary response = new Dictionary { {"body", this._kernel.GeneratePage("GET", systemParams, bizParams, textParams, sign)}, }; return TeaModel.ToObject(response); } /// /// ISV代商户代用,指定appAuthToken /// /// 代调用token /// 本客户端,便于链式调用 public Client Agent(string appAuthToken) { _kernel.InjectTextParam("app_auth_token", appAuthToken); return this; } /// /// 用户授权调用,指定authToken /// /// 用户授权token /// 本客户端,便于链式调用 public Client Auth(string authToken) { _kernel.InjectTextParam("auth_token", authToken); return this; } /// /// 设置异步通知回调地址,此处设置将在本调用中覆盖Config中的全局配置 /// /// 异步通知回调地址,例如:https://www.test.com/callback /// 本客户端,便于链式调用 public Client AsyncNotify(string url) { _kernel.InjectTextParam("notify_url", url); return this; } /// /// 将本次调用强制路由到后端系统的测试地址上,常用于线下环境内外联调,沙箱与线上环境设置无效 /// /// 后端系统测试地址 /// 本客户端,便于链式调用 public Client Route(string testUrl) { _kernel.InjectTextParam("ws_service_url", testUrl); return this; } /// /// 设置API入参中没有的其他可选业务请求参数(biz_content下的字段) /// /// 业务请求参数名称(biz_content下的字段名,比如timeout_express) /// /// 业务请求参数的值,一个可以序列化成JSON的对象 /// 如果该字段是一个字符串类型(String、Price、Date在SDK中都是字符串),请使用string储存 /// 如果该字段是一个数值型类型(比如:Number),请使用long储存 /// 如果该字段是一个复杂类型,请使用嵌套的Dictionary指定各下级字段的值 /// 如果该字段是一个数组,请使用List储存各个值 /// 对于更复杂的情况,也支持Dictionary和List的各种组合嵌套,比如参数是值是个List,List中的每种类型是一个复杂对象 /// /// 本客户端,便于链式调用 public Client Optional(string key, object value) { _kernel.InjectBizParam(key, value); return this; } /// /// 批量设置API入参中没有的其他可选业务请求参数(biz_content下的字段) /// optional方法的批量版本 /// /// 可选参数集合,每个参数由key和value组成,key和value的格式请参见optional方法的注释 /// 本客户端,便于链式调用 public Client BatchOptional(Dictionary optionalArgs) { foreach (var pair in optionalArgs) { _kernel.InjectBizParam(pair.Key, pair.Value); } return this; } } }