Config.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Web;
  4. namespace LYFZ.WxPayAPI
  5. {
  6. /**
  7. * 配置账号信息
  8. */
  9. public class WxPayConfig
  10. {
  11. //=======【基本信息设置】=====================================
  12. /* 微信公众号信息配置
  13. * APPID:绑定支付的APPID(必须配置)
  14. * MCHID:商户号(必须配置)
  15. * KEY:商户支付密钥,参考开户邮件设置(必须配置)
  16. * APPSECRET:公众帐号secert(仅JSAPI支付的时候需要配置)
  17. */
  18. public const string APPID = "";//"wxda4804c2ef3108f4";
  19. public const string MCHID = "";//"1355838402";
  20. public const string KEY = "";//"VIst5wdcsILt3kgMImwa21z9XPIvz0IC";
  21. public const string APPSECRET = "6fb7f621919340542ad4cf13a8922886";//"51c56b886b5be869567dd389b3e5d1d6";
  22. //=======【证书路径设置】=====================================
  23. /* 证书路径,注意应该填写绝对路径(仅退款、撤销订单时需要)
  24. */
  25. public const string SSLCERT_PATH = "cert/apiclient_cert.p12";
  26. public const string SSLCERT_PASSWORD = "1233410002";
  27. //=======【支付结果通知url】=====================================
  28. /* 支付结果通知回调url,用于商户接收支付结果
  29. */
  30. public const string NOTIFY_URL = "http://paysdk.weixin.qq.com/example/ResultNotifyPage.aspx";
  31. //=======【商户系统后台机器IP】=====================================
  32. /* 此参数可手动配置也可在程序中自动获取
  33. */
  34. public const string IP = "8.8.8.8";
  35. //=======【代理服务器设置】===================================
  36. /* 默认IP和端口号分别为0.0.0.0和0,此时不开启代理(如有需要才设置)
  37. */
  38. public const string PROXY_URL = "http://10.152.18.220:8080";
  39. //=======【上报信息配置】===================================
  40. /* 测速上报等级,0.关闭上报; 1.仅错误时上报; 2.全量上报
  41. */
  42. public const int REPORT_LEVENL = 1;
  43. //=======【日志级别】===================================
  44. /* 日志等级,0.不输出日志;1.只输出错误信息; 2.输出错误和正常信息; 3.输出错误信息、正常信息和调试信息
  45. */
  46. public const int LOG_LEVENL = 3;
  47. }
  48. }