Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xljiulang/payproxy
提供一种支付结果回调参数调试的解决方案
https://github.com/xljiulang/payproxy
Last synced: 2 months ago
JSON representation
提供一种支付结果回调参数调试的解决方案
- Host: GitHub
- URL: https://github.com/xljiulang/payproxy
- Owner: xljiulang
- Created: 2015-10-09T07:51:53.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-26T08:53:32.000Z (about 9 years ago)
- Last Synced: 2024-10-04T13:38:38.808Z (3 months ago)
- Language: C#
- Size: 135 KB
- Stars: 16
- Watchers: 7
- Forks: 13
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
##### 问题概述
我们在使用支付宝等平台提供的支付接口,都需要一个外网的http回调地址,用于异步接收支付平台传递的支付参数和结果。但在开发环境中,我们的本地环境一般是没有独立的对外ip地址的,这就造成开发的时候,无法调试查看支付平台传递来的支付参数和结果,给开发过程造成很大的麻烦。##### 解决方案
本解决方案的目标是本地开发环境不变,在部署环境的服务器上架设一个支付回调代理服务,用于接收支付平台传递来的支付参数,然后把这些参数推送到开发环境,最终参数传到开发环境的IIS,开发者只要对IIS下断就可以看到支付回调参数,继而完成对应的逻辑。##### 工作流程
![Alt text](https://github.com/xljiulang/PayProxy/blob/master/%E5%B7%A5%E4%BD%9C%E6%B5%81%E7%A8%8B.png)