├── .editorconfig ├── .eslintrc.js ├── .eslintrc.prepublish.js ├── .gitignore ├── .npmignore ├── .prettierrc.js ├── .vscode └── extensions.json ├── LICENSE.md ├── README.md ├── credentials └── WeixinWechatApi.credentials.ts ├── gulpfile.js ├── index.js ├── nodes ├── WeixinWechatSend.node.ts ├── utils │ ├── file.ts │ ├── index.ts │ ├── request.ts │ └── service.ts └── wechat.png ├── package.json ├── personal-wechat-service ├── README.md ├── index.js ├── package-lock.json ├── package.json ├── setup-wizard.js ├── wechat_automation.py ├── 一键启动.bat └── 新手指南.md └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.eslintrc.prepublish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/.eslintrc.prepublish.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.tsbuildinfo 3 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/README.md -------------------------------------------------------------------------------- /credentials/WeixinWechatApi.credentials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/credentials/WeixinWechatApi.credentials.ts -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/WeixinWechatSend.node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/nodes/WeixinWechatSend.node.ts -------------------------------------------------------------------------------- /nodes/utils/file.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/nodes/utils/file.ts -------------------------------------------------------------------------------- /nodes/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/nodes/utils/index.ts -------------------------------------------------------------------------------- /nodes/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/nodes/utils/request.ts -------------------------------------------------------------------------------- /nodes/utils/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/nodes/utils/service.ts -------------------------------------------------------------------------------- /nodes/wechat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/nodes/wechat.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/package.json -------------------------------------------------------------------------------- /personal-wechat-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/personal-wechat-service/README.md -------------------------------------------------------------------------------- /personal-wechat-service/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/personal-wechat-service/index.js -------------------------------------------------------------------------------- /personal-wechat-service/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/personal-wechat-service/package-lock.json -------------------------------------------------------------------------------- /personal-wechat-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/personal-wechat-service/package.json -------------------------------------------------------------------------------- /personal-wechat-service/setup-wizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/personal-wechat-service/setup-wizard.js -------------------------------------------------------------------------------- /personal-wechat-service/wechat_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/personal-wechat-service/wechat_automation.py -------------------------------------------------------------------------------- /personal-wechat-service/一键启动.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/personal-wechat-service/一键启动.bat -------------------------------------------------------------------------------- /personal-wechat-service/新手指南.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/personal-wechat-service/新手指南.md -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SuchJack/n8n-nodes-wechat-send/HEAD/tsconfig.json --------------------------------------------------------------------------------