QQ每天定时领取群礼物

本脚本采用Go语言进行编写,主要原因是简单粗暴,几行代码就搞定了,后面部署也非常方便

目录结构

1. 代码编写

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package main

import (
"encoding/json"
"fmt"
"github.com/robfig/cron"
"io/ioutil"
"net/http"
"strings"
"time"
)

type Gift struct {
Name string `json:"name"`
}


func main() {
c := cron.New()
// 每天凌晨5点执行一次
spec := "0 0 5 * * ?"
c.AddFunc(spec, func() {
client := &http.Client{}

req, err := http.NewRequest("POST", "https://pay.qun.qq.com/cgi-bin/group_pay/good_feeds/draw_lucky_gift", strings.NewReader("bkn=183506344&from=0&gc=40636692&client=1&version=7.7.0.3645"))
if err != nil {
fmt.Println("构建request失败")
}

req.Header.Set("Content-Type", "application/json;charset=utf-8")
req.Header.Set("Cookie", getCookie())

resp, err := client.Do(req)
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println("请求内容失败")
}
defer resp.Body.Close()
var gift = Gift{}
err = json.Unmarshal(body, &gift)
if err!=nil {
fmt.Println("JSON解析失败",err.Error())
}
now := time.Now()
date := now.Format("2006-01-02")
fmt.Printf(date+" 获得礼物:"+gift.Name)
})
c.Start()

select{}
}

func getCookie() string {
bytes, err := ioutil.ReadFile("cookie")
if err != nil {
fmt.Println("读取Cookie失败:",err.Error())
}
return string(bytes)
}

2. 编译

为了能跑在Linux上,所以这里要把它编译为在Linux上可执行文件。

新建脚本 build.bat,输入下面内容

1
2
3
4
SET CGO_ENABLED=0
SET GOOS=linux
SET GOARCH=amd64
go build auto_get_gift.go

执行编译

3. 部署

  1. 把生成的auto_get_gift和cookie上传到Linux服务器上

  2. 添加可执行权限

    1
    chmod +x auto_get_gift
  3. 启动

    1
    nohup ./auto_get_gift > gift.log &
  4. 查看是否在运行

    1
    jobs -l
-------------本文结束感谢您的阅读-------------