Skip to content

Latest commit

 

History

History
66 lines (53 loc) · 1.38 KB

腾讯云函数.md

File metadata and controls

66 lines (53 loc) · 1.38 KB

新建云函数

填写信息

  • 基础信息

    • 函数名称(随便填写): genshin-helper
    • 运行环境勾选Java8
  • 函数代码

    • 提交方法:本地上传zip包(请先下载最新的genshin-helper.jar,或者本地打包)
    • 执行方法:org.ponking.gih.SignMain::mainHandler
    • 本地打包:
      git clone https://github.com/PonKing66/genshi-helper
      cd genshi-helper
      mvn clean package
      
  • 环境配置

    • 内存建议512M
    • 执行时间20(若多账号,执行时间提高)
    • 添加环境变量config={},config的value具体如下。

config的value格式:

{
  "account": [
    {
      "cookie": "账号cookie",
      "stuid": "",
      "stoken": "",
      "toUser": ""
    },
    {
      "cookie": "账号cookie",
      "stuid": "",
      "stoken": "",
      "toUser": ""
    }
  ],
  "agentid": "xxxxxx",
  "corpid": "xxxxxxxx",
  "corpsecret": "xxxxxxxx",
  "mode": "不需要推送,可不填",
  "sckey": "xxxx"
}

如:

填写触发配置

自定义触发时间可填写, 参考链接

Cron 表达式 表达式
0 0 12 * * * * 每天中午12点触发
0 15 10 * * * * 每天上午10:15触发