Exemplo n.º 1
0
        /// <summary>
        /// 请求
        /// </summary>
        /// <returns></returns>
        private WeixinDataHelper Post(string xml, string url, int timeOut, bool isUseCert = false)
        {
            var start = DateTime.Now;                                                                           //请求开始时间

            string response = HttpService.Post(xml, url, isUseCert, timeOut, this.CertPath, this.CertPassword); //调用HTTP通信接口以提交数据到API

            var    end      = DateTime.Now;
            double timeCost = (end - start).TotalMilliseconds;//获得接口耗时

            //将xml格式的结果转换为对象以返回
            WeixinDataHelper result = new WeixinDataHelper(this.WeixinKey);

            if (response.StartsWith("<xml>"))
            {
                //若接口调用失败会返回xml格式的结果
                result.FromXml(response);
            }
            else
            {
                //接口调用成功则返回非xml格式的数据
                result.SetValue("result", response);
            }

            ReportCostTime(url, (int)timeCost, result);//测速上报
            //RequestUrl,ElapsedTime,HttpMethod,RequestContent
            result.SetValue("requestUrl", url);
            result.SetValue("elapsedTime", timeCost);
            result.SetValue("httpMethod", "Post");
            result.SetValue("requestContent", xml);
            return(result);
        }
Exemplo n.º 2
0
        /**
         *
         * 测速上报接口实现
         * @param WeixinDataHelper inputObj 提交给测速上报接口的参数
         * @param int timeOut 测速上报接口超时时间
         * @throws WeixinPayException
         * @return 成功时返回测速上报接口返回的结果,其他抛异常
         */
        private WeixinDataHelper Report(WeixinDataHelper inputObj, int timeOut = 1)
        {
            string url = "https://api.mch.weixin.qq.com/payitil/report";

            //检测必填参数
            if (!inputObj.IsSet("interface_url"))
            {
                throw new WeixinPayException("接口URL,缺少必填参数interface_url!");
            }
            if (!inputObj.IsSet("return_code"))
            {
                throw new WeixinPayException("返回状态码,缺少必填参数return_code!");
            }
            if (!inputObj.IsSet("result_code"))
            {
                throw new WeixinPayException("业务结果,缺少必填参数result_code!");
            }
            if (!inputObj.IsSet("user_ip"))
            {
                throw new WeixinPayException("访问接口IP,缺少必填参数user_ip!");
            }
            if (!inputObj.IsSet("execute_time_"))
            {
                throw new WeixinPayException("接口耗时,缺少必填参数execute_time_!");
            }
            inputObj.SetValue("time", DateTime.Now.ToString("yyyyMMddHHmmss"));//商户上报时间
            string xml      = ToXml(inputObj);
            string response = HttpService.Post(xml, url, false, timeOut, this.CertPath, this.CertPassword);

            WeixinDataHelper result = new WeixinDataHelper(this.WeixinKey);

            result.FromXml(response);
            return(result);
        }
Exemplo n.º 3
0
        /**
         * 下载对账单
         * @param WeixinDataHelper inputObj 提交给下载对账单API的参数
         * @param int timeOut 接口超时时间
         * @throws WeixinPayException
         * @return 成功时返回,其他抛异常
         */
        public WeixinDataHelper DownloadBill(WeixinDataHelper inputObj, int timeOut = 6)
        {
            string url = "https://api.mch.weixin.qq.com/pay/downloadbill";

            //检测必填参数
            if (!inputObj.IsSet("bill_date"))
            {
                throw new WeixinPayException("对账单接口中,缺少必填参数bill_date!");
            }

            string xml = ToXml(inputObj);

            //Log.Debug("WeixinPayApi", "DownloadBill request : " + xml);
            string response = HttpService.Post(xml, url, false, timeOut, this.CertPath, this.CertPassword);//调用HTTP通信接口以提交数据到API
            //Log.Debug("WeixinPayApi", "DownloadBill result : " + response);

            WeixinDataHelper result = new WeixinDataHelper(inputObj.WeixinKey);

            //若接口调用失败会返回xml格式的结果
            if (response.Substring(0, 5) == "<xml>")
            {
                result.FromXml(response);
            }
            //接口调用成功则返回非xml格式的数据
            else
            {
                result.SetValue("result", response);
            }

            return(result);
        }