Python脚本实现提交微信步数 - 网络技能论坛 - 经验分享 - 小轻秀场

Python脚本实现提交微信步数

步数数据可同步到微信、支付宝、QQ等第三方平台,使用前去注册小米运动账号,而不是小米账号,再去绑定需要平台第三方平台即可。

# -*- coding: utf8 -*-
import requests
import json
user = input("请输入账号:")
passwd = input("请输入密码:")
end = input("请输入要刷取的步数:")
url = "https://api.tx7.co/api/Xiaomisteps/?xmmobile="+user+"&xmpsw="+passwd+"&xmstep="+end
from fake_useragent import UserAgent
ua = UserAgent()
headers = {'User-Agent': ua.random}
req = requests.get(url=url,headers=headers).json()
code = req["code"]
if code == 200:
    print("提交成功",)
    print("提交步数为:",end)
elif code == 207:
    print("提交失败")
    print("登录失败,可能是账号或密码错误")
elif code == -1:
    print("60秒内只允许提交1次")

请登录后发表评论

    没有回复内容