Exemple #1
0
        /// <summary>
        /// 提交被扫支付API
        /// 收银员使用扫码设备读取微信用户刷卡授权码以后,二维码或条码信息传送至商户收银台,
        /// 由商户收银台或者商户后台调用该接口发起支付。
        /// </summary>
        /// <param name="inputObj">提交给被扫支付API的参数</param>
        /// <param name="timeOut">超时时间</param>
        /// <returns>成功时返回调用结果,其他抛异常</returns>
        public static WxPayData Micropay(WxPayData inputObj, int timeOut = 10)
        {
            ////正式url
            string url = "https://api.mch.weixin.qq.com/pay/micropay";

            ////沙箱url
            //string url = "https://api.mch.weixin.qq.com/sandboxnew/pay/micropay";
            //检测必填参数
            if (!inputObj.IsSet("body"))
            {
                throw new WxPayException("提交被扫支付API接口中,缺少必填参数body!");
            }
            else if (!inputObj.IsSet("out_trade_no"))
            {
                throw new WxPayException("提交被扫支付API接口中,缺少必填参数out_trade_no!");
            }
            else if (!inputObj.IsSet("total_fee"))
            {
                throw new WxPayException("提交被扫支付API接口中,缺少必填参数total_fee!");
            }
            else if (!inputObj.IsSet("auth_code"))
            {
                throw new WxPayException("提交被扫支付API接口中,缺少必填参数auth_code!");
            }

            if (!inputObj.IsSet("appid"))
            {
                inputObj.SetValue("appid", WxPayConfig.GetConfig().GetAppID());//公众账号ID
            }
            if (!inputObj.IsSet("mch_id"))
            {
                inputObj.SetValue("mch_id", WxPayConfig.GetConfig().GetMchID());//商户号
            }
            if (!inputObj.IsSet("spbill_create_ip"))
            {
                inputObj.SetValue("spbill_create_ip", WxPayConfig.GetConfig().GetIp());//终端ip
            }

            inputObj.SetValue("nonce_str", Guid.NewGuid().ToString().Replace("-", "")); //随机字符串
            inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_MD5);                    //签名类型
            inputObj.SetValue("sign", inputObj.MakeSign());                             //签名
            string xml = inputObj.ToXml();

            var start = DateTime.Now;//请求开始时间

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

            Log.Debug("WxPayApi", "MicroPay response : " + response);

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

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

            result.FromXml(response);

            ReportCostTime(url, timeCost, result);//测速上报

            return(result);
        }
Exemple #2
0
        /// <summary>
        /// 统一下单
        /// </summary>
        /// <param name="inputObj">提交给统一下单API的参数</param>
        /// <param name="timeOut">超时时间</param>
        /// <returns>成功时返回,其他抛异常</returns>
        //public static WxPayData UnifiedOrder(WxPayData inputObj, int timeOut = 6)
        //{
        //    ////正式url
        //    string url = "https://api.mch.weixin.qq.com/pay/unifiedorder";
        //    ////沙箱
        //    //string url = "https://api.mch.weixin.qq.com/sandboxnew/pay/unifiedorder";
        //    //检测必填参数
        //    if (!inputObj.IsSet("out_trade_no"))
        //    {
        //        throw new WxPayException("缺少统一支付接口必填参数out_trade_no!");
        //    }
        //    else if (!inputObj.IsSet("body"))
        //    {
        //        throw new WxPayException("缺少统一支付接口必填参数body!");
        //    }
        //    else if (!inputObj.IsSet("total_fee"))
        //    {
        //        throw new WxPayException("缺少统一支付接口必填参数total_fee!");
        //    }
        //    else if (!inputObj.IsSet("trade_type"))
        //    {
        //        throw new WxPayException("缺少统一支付接口必填参数trade_type!");
        //    }

        //    //关联参数
        //    if (inputObj.GetValue("trade_type").ToString() == "JSAPI" && !inputObj.IsSet("openid"))
        //    {
        //        throw new WxPayException("统一支付接口中,缺少必填参数openid!trade_type为JSAPI时,openid为必填参数!");
        //    }
        //    if (inputObj.GetValue("trade_type").ToString() == "NATIVE" && !inputObj.IsSet("product_id"))
        //    {
        //        throw new WxPayException("统一支付接口中,缺少必填参数product_id!trade_type为JSAPI时,product_id为必填参数!");
        //    }

        //    //异步通知url未设置,则使用配置文件中的url
        //    if (!inputObj.IsSet("notify_url"))
        //    {
        //        inputObj.SetValue("notify_url", WxPayConfig.GetConfig().GetNotifyUrl());//异步通知url
        //    }

        //    if (!inputObj.IsSet("appid"))
        //    {
        //        inputObj.SetValue("appid", WxPayConfig.GetConfig().GetAppID());//公众账号ID
        //    }
        //    if (!inputObj.IsSet("mch_id"))
        //    {
        //        inputObj.SetValue("mch_id", WxPayConfig.GetConfig().GetMchID());//商户号
        //    }
        //    if (!inputObj.IsSet("spbill_create_ip"))
        //    {
        //        inputObj.SetValue("spbill_create_ip", WxPayConfig.GetConfig().GetIp());//终端ip
        //    }
        //    inputObj.SetValue("nonce_str", GenerateNonceStr());//随机字符串
        //    //inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_HMAC_SHA256);//签名类型
        //    //inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_MD5);//签名类型
        //    //签名
        //    inputObj.SetValue("sign", inputObj.MakeSign());
        //    LogQueue.Write(LogType.Debug, "sign", inputObj.MakeSign());
        //    string xml = inputObj.ToXml();
        //    LogQueue.Write(LogType.Debug, "XML", xml);
        //    var start = DateTime.Now;

        //    Log.Debug("WxPayApi", "UnfiedOrder request : " + xml);
        //    string response = HttpService.Post(xml, url, false, timeOut);
        //    Log.Debug("WxPayApi", "UnfiedOrder response : " + response);

        //    var end = DateTime.Now;
        //    int timeCost = (int)((end - start).TotalMilliseconds);

        //    WxPayData result = new WxPayData();
        //    result.FromXml(response);
        //    ReportCostTime(url, timeCost, result);//测速上报

        //    return result;
        //}

        /**
         *
         * 统一下单
         * @param WxPaydata inputObj 提交给统一下单API的参数
         * @param int timeOut 超时时间
         * @throws WxPayException
         * @return 成功时返回,其他抛异常
         */
        public static WxPayData UnifiedOrder(WxPayData inputObj, int timeOut = 6)
        {
            string url = "https://api.mch.weixin.qq.com/pay/unifiedorder";

            //检测必填参数
            if (!inputObj.IsSet("out_trade_no"))
            {
                throw new WxPayException("缺少统一支付接口必填参数out_trade_no!");
            }
            else if (!inputObj.IsSet("body"))
            {
                throw new WxPayException("缺少统一支付接口必填参数body!");
            }
            else if (!inputObj.IsSet("total_fee"))
            {
                throw new WxPayException("缺少统一支付接口必填参数total_fee!");
            }
            else if (!inputObj.IsSet("trade_type"))
            {
                throw new WxPayException("缺少统一支付接口必填参数trade_type!");
            }

            //关联参数
            if (inputObj.GetValue("trade_type").ToString() == "JSAPI" && !inputObj.IsSet("openid"))
            {
                throw new WxPayException("统一支付接口中,缺少必填参数openid!trade_type为JSAPI时,openid为必填参数!");
            }
            if (inputObj.GetValue("trade_type").ToString() == "NATIVE" && !inputObj.IsSet("product_id"))
            {
                throw new WxPayException("统一支付接口中,缺少必填参数product_id!trade_type为JSAPI时,product_id为必填参数!");
            }

            //异步通知url未设置,则使用配置文件中的url
            if (!inputObj.IsSet("notify_url"))
            {
                inputObj.SetValue("notify_url", WxPayConfig.GetConfig().GetNotifyUrl());//异步通知url
            }

            inputObj.SetValue("appid", WxPayConfig.GetConfig().GetAppID());         //公众账号ID
            inputObj.SetValue("mch_id", WxPayConfig.GetConfig().GetMchID());        //商户号
            inputObj.SetValue("spbill_create_ip", WxPayConfig.GetConfig().GetIp()); //终端ip

            inputObj.SetValue("nonce_str", GenerateNonceStr());                     //随机字符串
            //inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_HMAC_SHA256);//签名类型
            //inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_MD5);//签名类型

            //签名
            inputObj.SetValue("sign", inputObj.MakeSign());
            string xml = inputObj.ToXml();
            //LogQueue.Write(LogType.Debug, "XML", xml);
            var start = DateTime.Now;

            Log.Debug("WxPayApi", "UnfiedOrder request : " + xml);
            string response = HttpService.Post(xml, url, false, timeOut);

            Log.Debug("WxPayApi", "UnfiedOrder response : " + response);

            var end      = DateTime.Now;
            int timeCost = (int)((end - start).TotalMilliseconds);

            WxPayData result = new WxPayData();

            result.FromXml(response);

            ReportCostTime(url, timeCost, result);//测速上报

            return(result);
        }
Exemple #3
0
        /// <summary>
        /// 申请退款
        /// </summary>
        /// <param name="inputObj">提交给申请退款API的参数</param>
        /// <param name="timeOut">超时时间</param>
        /// <returns>成功时返回接口调用结果,其他抛异常</returns>
        public static WxPayData Refund(WxPayData inputObj, int timeOut = 6)
        {
            ////正式url
            string url = "https://api.mch.weixin.qq.com/secapi/pay/refund";

            ////测试url
            //string url = "https://api.mch.weixin.qq.com/sandboxnew/secapi/pay/refund";
            //检测必填参数
            if (!inputObj.IsSet("out_trade_no") && !inputObj.IsSet("transaction_id"))
            {
                throw new WxPayException("退款申请接口中,out_trade_no、transaction_id至少填一个!");
            }
            else if (!inputObj.IsSet("out_refund_no"))
            {
                throw new WxPayException("退款申请接口中,缺少必填参数out_refund_no!");
            }
            else if (!inputObj.IsSet("total_fee"))
            {
                throw new WxPayException("退款申请接口中,缺少必填参数total_fee!");
            }
            else if (!inputObj.IsSet("refund_fee"))
            {
                throw new WxPayException("退款申请接口中,缺少必填参数refund_fee!");
            }
            else if (!inputObj.IsSet("op_user_id"))
            {
                throw new WxPayException("退款申请接口中,缺少必填参数op_user_id!");
            }

            if (!inputObj.IsSet("appid"))
            {
                inputObj.SetValue("appid", WxPayConfig.GetConfig().GetAppID());//公众账号ID
            }
            if (!inputObj.IsSet("mch_id"))
            {
                inputObj.SetValue("mch_id", WxPayConfig.GetConfig().GetMchID());        //商户号
            }
            inputObj.SetValue("nonce_str", Guid.NewGuid().ToString().Replace("-", "")); //随机字符串
            inputObj.SetValue("sign_type", WxPayData.SIGN_TYPE_MD5);                    //签名类型
            inputObj.SetValue("sign", inputObj.MakeSign());                             //签名

            string xml   = inputObj.ToXml();
            var    start = DateTime.Now;

            Log.Debug("WxPayApi", "Refund request : " + xml);
            string response = HttpService.Post(xml, url, true, timeOut);//调用HTTP通信接口提交数据到API

            Log.Debug("WxPayApi", "Refund response : " + response);

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

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

            result.FromXml(response);

            ReportCostTime(url, timeCost, result);//测速上报

            return(result);
        }