Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thundernet8/alipayorderssupervisor
:sparkles: 使用Node监视支付宝订单,即时通知服务器以实现免签约支付接口
https://github.com/thundernet8/alipayorderssupervisor
alipay nodejs spider
Last synced: 19 days ago
JSON representation
:sparkles: 使用Node监视支付宝订单,即时通知服务器以实现免签约支付接口
- Host: GitHub
- URL: https://github.com/thundernet8/alipayorderssupervisor
- Owner: thundernet8
- License: mit
- Created: 2017-02-09T07:57:10.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-12T10:44:02.000Z (almost 7 years ago)
- Last Synced: 2024-10-12T13:42:50.500Z (about 1 month ago)
- Topics: alipay, nodejs, spider
- Language: JavaScript
- Homepage:
- Size: 73.2 KB
- Stars: 374
- Watchers: 29
- Forks: 92
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Alipay Orders Supervisor
**支付宝免签约支付接口实现脚本 - NodeJS 版本 .**
[![GitHub issues](https://img.shields.io/github/issues/thundernet8/AlipayOrdersSupervisor.svg)](https://github.com/thundernet8/AlipayOrdersSupervisor/issues)
[![GitHub forks](https://img.shields.io/github/forks/thundernet8/AlipayOrdersSupervisor.svg)](https://github.com/thundernet8/AlipayOrdersSupervisor/network)
[![GitHub stars](https://img.shields.io/github/stars/thundernet8/AlipayOrdersSupervisor.svg)](https://github.com/thundernet8/AlipayOrdersSupervisor/stargazers)
[![dependency status](https://img.shields.io/david/thundernet8/AlipayOrdersSupervisor.svg?maxAge=3600&style=flat)](https://david-dm.org/thundernet8/AlipayOrdersSupervisor)
[![Build Status](https://travis-ci.org/thundernet8/AlipayOrdersSupervisor.svg?branch=master)](https://travis-ci.org/thundernet8/AlipayOrdersSupervisor)
[![GitHub license](https://img.shields.io/github/license/thundernet8/AlipayOrdersSupervisor.svg)](https://github.com/thundernet8/AlipayOrdersSupervisor/blob/master/LICENSE)
[![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettier)
## Update 2018.2
目前支付宝已经加强了登录的校验,极大影响工具便利性,现在推出了另一种解决方案,见[利用有赞云和有赞微小店实现个人收款解决方案](https://github.com/thundernet8/YouzanPayPortal)提供一种思路参考,可以直接按此仓库使用的方法应用到自己的系统中,或使用该仓库作为一个独立的服务.
## GUI 版 (Update 2017-08-17)
现已推出 GUI 版客户端,由 Java+Swing 编写,项目地址[AlipayOrdersSupervisor-GUI](https://github.com/thundernet8/AlipayOrdersSupervisor-GUI)
## 功能介绍
通过 NodeJS 爬取个人支付宝交易订单列表,分析订单中的备注,然后将订单数据推送至指定服务器,实现支付宝交易接口
自带了简单的日志和邮件通知功能,对系统异常及时报告以及记录
## 如何使用
* 1. 请配置`lib/config.js`中的参数,如邮件 SMTP,推送服务器地址,以及`pushStateSecret`,`alipayCookies`等。
`pushStateSecret`用于数据的加盐保证安全以及验证推送来源的合法性
`pushAppId`和`pushAppKey`暂时无用
`alipayCookies`必须填写,这是为了爬取订单时保证登录状态
* 2. 安装必要的 npm 包
```
npm install
```* 3. 使用`forever`循环运行脚本
```typescript
forever start index.js
```或者使用 script
```typescript
npm start
```脚本会每分钟爬取一次订单列表
* 4. 服务端处理
请参考脚本中利用`pushStateSecret`生成签名的方法,验证数据合法性后进行业务处理
注 : 服务端返回`success`文本后会将对应记录标记为已处理,后续不会再次推送
## 使用 Tips
目前该脚本已在我的个人网站 webapproach.net/shop 上稳定生产运行,对于 cookies 过期问题,从上一次 2017 年 2 月 25 日更换 cookies 起至今 (2017 年 6 月 13 日 ),已持续 3 个半月未遭遇 cookies 过期问题。因此可能建议:
* 没事不要去登录访问网页版的订单界面,当你关闭网页或网页上直接退出或者在网页停留过久无操作可能会触发服务端 session 更新 cookies 内容失效
## License
AlipayOrdersSupervisor is freely distributable under the terms of the
[MIT license](https://github.com/thundernet8/AlipayOrdersSupervisor/blob/master/LICENSE).[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fthundernet8%2FAlipayOrdersSupervisor.svg?type=large)](https://app.fossa.io/projects/git%2Bgithub.com%2Fthundernet8%2FAlipayOrdersSupervisor?ref=badge_large)