123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- using System;
- using System.Collections.Generic;
- using System.Web;
- namespace WxPayAPI
- {
- /**
- * 配置账号信息
- */
- public class WxPayConfig
- {
- //=======【基本信息设置】=====================================
- /* 微信公众号信息配置
- * APPID:绑定支付的APPID(必须配置)
- * MCHID:商户号(必须配置)
- * KEY:商户支付密钥,参考开户邮件设置(必须配置)
- * APPSECRET:公众帐号secert(仅JSAPI支付的时候需要配置)
- */
- //public const string APPID = "wx2428e34e0e7dc6ef";
- //public const string MCHID = "1233410002";
- //public const string KEY = "e10adc3849ba56abbe56e056f20f883e";
- //public const string APPSECRET = "51c56b886b5be869567dd389b3e5d1d6";
- public const string APPID = "wxdc0ee0e75b3c6188";
- public const string MCHID = "1372008402";
- public const string KEY = "76E71E43211CA7C4D6730D40B120A1FA";
- public const string APPSECRET = "f878802a0a1ca973659deb62010ee4a4";
- //=======【证书路径设置】=====================================
- /* 证书路径,注意应该填写绝对路径(仅退款、撤销订单时需要)
- */
- public const string SSLCERT_PATH = "Common\\cert\\apiclient_cert.p12";
- public const string SSLCERT_PASSWORD = "1372008402";
- //=======【支付结果通知url】=====================================
- /* 支付结果通知回调url,用于商户接收支付结果
- */
- public const string NOTIFY_URL = "http://paysdk.weixin.qq.com/example/ResultNotifyPage.aspx";
- //=======【商户系统后台机器IP】=====================================
- /* 此参数可手动配置也可在程序中自动获取
- */
- public const string IP = "8.8.8.8";
- //=======【代理服务器设置】===================================
- /* 默认IP和端口号分别为0.0.0.0和0,此时不开启代理(如有需要才设置)
- */
- public const string PROXY_URL = "http://10.152.18.220:8080";
- //=======【上报信息配置】===================================
- /* 测速上报等级,0.关闭上报; 1.仅错误时上报; 2.全量上报
- */
- public const int REPORT_LEVENL = 1;
- //=======【日志级别】===================================
- /* 日志等级,0.不输出日志;1.只输出错误信息; 2.输出错误和正常信息; 3.输出错误信息、正常信息和调试信息
- */
- public const int LOG_LEVENL = 3;
- }
- }
|