Blame view

netcore/src/Infrastructure/NCC.Pay/NCC.Core.Pay/App.config 4.06 KB
de2bd2f9   “wangming”   项目初始化
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  <?xml version="1.0" encoding="utf-8"?>
  <configuration>
  	<appSettings>
  		<!--支付宝配置-->
  		<add key="ALIPay_URL" value="https://mapi.alipay.com/gateway.do?" />
  		<add key="ALIPay_NotifyURL" value="" />
  		<add key="ALIPay_ErrorURL" value="" />
  		<add key="ALI_PARTER" value="" />
  		<add key="ALI_KEY" value="" />
  		<add key="ALI_ACCOUNT" value="" />
  
  		<add key="ALI_SELLERID" value="" />
  		<add key="ALI_SELLEREMAIL" value="" />
  		<add key="ALI_HTTPS_VERYFY_URL" value="https://mapi.alipay.com/gateway.do?service=notify_verify" />
  
  		<add key="ALIPay_WAP_SERVICE" value="alipay.wap.create.direct.pay.by.user" />
  		<add key="ALIPay_WEB_SERVICE" value="create_direct_pay_by_user" />
  		<add key="ALIPay_MOBILE_SERVICE" value="mobile.securitypay.pay" />
  
  		<!--我的私钥-->
  		<add key="ALIPay_RSA_PRIVATEKEY" value="" />
  		<!--我的公钥-->
  		<add key="ALIPay_RSA_PUBLICKEY" value="" />
  		<!--支付宝公钥-->
  		<add key="ALIPay_RSA_ALI_PUBLICKEY" value="" />
  
  		<!--微信支付配置-->
  		<add key="WEPAY_CHARTSET" value="utf-8" />
  		<add key="WEPAY_PAY_URL" value="https://api.mch.weixin.qq.com/pay/unifiedorder" />
  		<add key="WEPAY_ORDERQUERY_URL" value="https://api.mch.weixin.qq.com/pay/orderquery" />
  		<add key="WECHAT_AUTH_URL" value="https://open.weixin.qq.com/connect/oauth2/authorize" />
  		<add key="WECHAT_TOKEN_URL" value="https://api.weixin.qq.com/sns/oauth2/access_token" />
  		<add key="WECHAT_CALLBACKIP_URL" value="https://api.weixin.qq.com/cgi-bin/getcallbackip" />
      <add key="WECHAT_GETTOKEN_URL" value="https://api.weixin.qq.com/cgi-bin/token" />
      <add key="WECHAT_REFUND_URL" value="https://api.mch.weixin.qq.com/secapi/pay/refund" />
      <add key="WECHAT_SSlCertPath" value="Certificate/apiclient_cert" />
      <add key="WECHAT_SSlCertPass" value="1614031517" /> 
  
  		<!--开发者平台配置-->
  		<add key="WEPAY_APP_APPID" value="1" />
  		<add key="WEPAY_APP_MCH_ID" value="2" />
  		<add key="WEPAY_APP_NOTIFY_URL" value="3" />
  		<add key="WEPAY_APP_URL" value="4" />
  		<add key="WEPAY_APP_KEY" value="5" />
  
      <!--公众号平台配置-->
      <add key="WEPAY_WEB_APPID" value="wxa2d04b53b653c64f" />
      <!--商户号-->
      <add key="WEPAY_WEB_MCH_ID" value="1614031517" />
      <!--微信回调地址-->
      <add key="WEPAY_WEB_NOTIFY_URL" value="https://qiche.antissoft.com/api/Order/WePayNotify" />
      <add key="WEPAY_WEB_URL" value="https://qiche.antissoft.com/pay/unifiedorder" />
      <!--微信商户秘钥-->
      <add key="WEPAY_WEB_KEY" value="883dc81127914701bafee44007c8ewq1" />
  	</appSettings>
  <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /></startup>
    <runtime>
      <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
        <dependentAssembly> 
          <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
          <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
        </dependentAssembly>
        <dependentAssembly>
          <assemblyIdentity name="ICSharpCode.SharpZipLib" publicKeyToken="1b03e6acf1164f73" culture="neutral" />
          <bindingRedirect oldVersion="0.0.0.0-0.85.4.369" newVersion="0.85.4.369" />
        </dependentAssembly>
        <dependentAssembly>
          <assemblyIdentity name="BouncyCastle.Crypto" publicKeyToken="0e99375e54769942" culture="neutral" />
          <bindingRedirect oldVersion="0.0.0.0-1.8.5.0" newVersion="1.8.5.0" />
        </dependentAssembly>
        <dependentAssembly>
          <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
          <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" /> 
          <assemblyIdentity name="BouncyCastle.Crypto" publicKeyToken="0e99375e54769942" culture="neutral" />
          <bindingRedirect oldVersion="0.0.0.0-1.8.10.0" newVersion="1.8.10.0" />
        </dependentAssembly>
        <dependentAssembly>
          <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
          <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" /> 
        </dependentAssembly>
      </assemblyBinding>
    </runtime>
  </configuration>