import requests
import random
import string

url = "https://[Log in to view URL]"

headers = {
    "version_name": "599",
    "version_code": "599",
    "channel": "google",
    "Content-Type": "application/json; charset=utf-8",
    "Accept-Encoding": "gzip",
    "User-Agent": "okhttp/4.10.0"
}

data = {
    "code": "邀请码",
    "device_id": "274729fc7da8c3854b6c9b62433acfe11",
    "passwd": "12345678",
    "repasswd": "12345678",
    "name": "jdhdhr",
    "email": ""
}

for i in range(10):
    # 生成随机邮箱
    email = ''.join(random.choices(string.ascii_lowercase, k=10)) + '@example.com'
    data["email"] = email
    
    # 发送请求
    response = requests.post(url, headers=headers, json=data)
    
    # 打印响应结果
    print(f"第{i+1}次请求的响应结果:{response.text}")


写了个刷香蕉加速器邀请的脚本,脚本结束后开启飞行模式然后关闭继续使用,当然这个需要python环境,还要requests模块

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: