Node-RED 实现掘金自动签到

197 阅读2分钟

流程图概览

image.png

流程源码

自己填写Cookie和配置消息推送

[
    {
        "id": "3955f92b273aede3",
        "type": "inject",
        "z": "5658833270154089",
        "name": "",
        "props": [
            {
                "p": "payload"
            },
            {
                "p": "topic",
                "vt": "str"
            }
        ],
        "repeat": "86400",
        "crontab": "",
        "once": true,
        "onceDelay": 0.1,
        "topic": "",
        "payload": "这里是cookie ktviezdxVE=",
        "payloadType": "str",
        "x": 250,
        "y": 120,
        "wires": [
            [
                "582a95b2a2aa3060"
            ]
        ]
    },
    {
        "id": "3b11f9730e438b25",
        "type": "http request",
        "z": "5658833270154089",
        "name": "签到",
        "method": "POST",
        "ret": "txt",
        "paytoqs": "ignore",
        "url": "https://api.juejin.cn/growth_api/v1/check_in",
        "tls": "",
        "persist": false,
        "proxy": "",
        "insecureHTTPParser": false,
        "authType": "",
        "senderr": false,
        "headers": [],
        "x": 590,
        "y": 120,
        "wires": [
            [
                "c6058983cb805716",
                "c0e04000ea526061"
            ]
        ]
    },
    {
        "id": "582a95b2a2aa3060",
        "type": "function",
        "z": "5658833270154089",
        "name": "cookie",
        "func": "\nmsg.headers = {}\nmsg.headers.cookie = msg.payload\nflow.set('juejin_cookie', msg.payload)\nreturn msg;",
        "outputs": 1,
        "timeout": 0,
        "noerr": 0,
        "initialize": "",
        "finalize": "",
        "libs": [],
        "x": 410,
        "y": 120,
        "wires": [
            [
                "3b11f9730e438b25"
            ]
        ]
    },
    {
        "id": "eb0c171e461b6bb9",
        "type": "debug",
        "z": "5658833270154089",
        "name": "掘金签到log",
        "active": true,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "payload",
        "targetType": "msg",
        "statusVal": "",
        "statusType": "auto",
        "x": 830,
        "y": 240,
        "wires": []
    },
    {
        "id": "835ca00925fca67d",
        "type": "http request",
        "z": "5658833270154089",
        "name": "已签到天数",
        "method": "GET",
        "ret": "txt",
        "paytoqs": "ignore",
        "url": "https://api.juejin.cn/growth_api/v1/get_counts",
        "tls": "",
        "persist": false,
        "proxy": "",
        "insecureHTTPParser": false,
        "authType": "",
        "senderr": false,
        "headers": [],
        "x": 610,
        "y": 240,
        "wires": [
            [
                "eb0c171e461b6bb9",
                "414adebf929f16bf"
            ]
        ]
    },
    {
        "id": "c6058983cb805716",
        "type": "debug",
        "z": "5658833270154089",
        "name": "debug 113",
        "active": true,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "true",
        "targetType": "full",
        "statusVal": "",
        "statusType": "auto",
        "x": 790,
        "y": 100,
        "wires": []
    },
    {
        "id": "c0e04000ea526061",
        "type": "function",
        "z": "5658833270154089",
        "name": "cookie",
        "func": "\nmsg.headers = {}\nmsg.headers.cookie = flow.get('juejin_cookie')\n\nreturn msg;",
        "outputs": 1,
        "timeout": 0,
        "noerr": 0,
        "initialize": "",
        "finalize": "",
        "libs": [],
        "x": 410,
        "y": 240,
        "wires": [
            [
                "835ca00925fca67d"
            ]
        ]
    },
    {
        "id": "414adebf929f16bf",
        "type": "function",
        "z": "5658833270154089",
        "name": "消息推送",
        "func": "\nconst data = JSON.parse(msg.payload)?.data || {};\n \nconst info = {\n    username: 'giscafer',\n    contCount: data.cont_count, // 联系签到\n    sumCount: data.sum_count, // 总签到数\n};\n\nmsg.payload = `掘金用户(${info.username}) :连续签到 ${info.contCount} 次,总签到次数 ${info.sumCount} 次`\nreturn msg;",
        "outputs": 1,
        "timeout": 0,
        "noerr": 0,
        "initialize": "",
        "finalize": "",
        "libs": [],
        "x": 420,
        "y": 380,
        "wires": [
            [
                "56611e80a89353f6"
            ]
        ]
    }
]

关于Node-RED使用介绍更多见:Node-RED Dashboard 低码大屏实践 | Nicky Lao (giscafer.com)