DemoConfig.cs 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. namespace GxPress.Common.WechatPay
  2. {
  3. public class DemoConfig : IConfig
  4. {
  5. public DemoConfig()
  6. {
  7. }
  8. //=======【基本信息设置】=====================================
  9. /* 微信公众号信息配置
  10. * APPID:绑定支付的APPID(必须配置)
  11. * MCHID:商户号(必须配置)
  12. * KEY:商户支付密钥,参考开户邮件设置(必须配置),请妥善保管,避免密钥泄露
  13. * APPSECRET:公众帐号secert(仅JSAPI支付的时候需要配置),请妥善保管,避免密钥泄露
  14. */
  15. public string GetAppID()
  16. {
  17. return "wx16f676b527629140";
  18. }
  19. public string GetMchID()
  20. {
  21. return "1484922142";
  22. }
  23. public string GetKey()
  24. {
  25. return "BMUrBXkbXybw2ha36HgXBB028nMysNbL";
  26. }
  27. public string GetAppSecret()
  28. {
  29. return "";
  30. }
  31. //=======【证书路径设置】=====================================
  32. /* 证书路径,注意应该填写绝对路径(仅退款、撤销订单时需要)
  33. * 1.证书文件不能放在web服务器虚拟目录,应放在有访问权限控制的目录中,防止被他人下载;
  34. * 2.建议将证书文件名改为复杂且不容易猜测的文件
  35. * 3.商户服务器要做好病毒和木马防护工作,不被非法侵入者窃取证书文件。
  36. */
  37. public string GetSSlCertPath()
  38. {
  39. return "";
  40. }
  41. public string GetSSlCertPassword()
  42. {
  43. return "";
  44. }
  45. //=======【支付结果通知url】=====================================
  46. /* 支付结果通知回调url,用于商户接收支付结果
  47. */
  48. public string GetNotifyUrl()
  49. {
  50. // return "http://payzzz.top/api/web/wxpay/notify";
  51. return "https://apk.tederen.com/service/api/web/wxpay/notify";
  52. }
  53. //=======【商户系统后台机器IP】=====================================
  54. /* 此参数可手动配置也可在程序中自动获取
  55. */
  56. public string GetIp()
  57. {
  58. return "0.0.0.0";
  59. }
  60. //=======【代理服务器设置】===================================
  61. /* 默认IP和端口号分别为0.0.0.0和0,此时不开启代理(如有需要才设置)
  62. */
  63. public string GetProxyUrl()
  64. {
  65. return "";
  66. }
  67. //=======【上报信息配置】===================================
  68. /* 测速上报等级,0.关闭上报; 1.仅错误时上报; 2.全量上报
  69. */
  70. public int GetReportLevel()
  71. {
  72. return 1;
  73. }
  74. //=======【日志级别】===================================
  75. /* 日志等级,0.不输出日志;1.只输出错误信息; 2.输出错误和正常信息; 3.输出错误信息、正常信息和调试信息
  76. */
  77. public int GetLogLevel()
  78. {
  79. return 1;
  80. }
  81. }
  82. }