[color=]注意!由于使用第三方接口,为了你的其他账户安全,
[color=]建议用新的邮箱去注册,设置一个与平时账号不一样的zepplife密码。
[color=]确保其他账号安全性。
如:
[email protected]
[email protected]
密码:shuabushu123456
[color=]避免其他账号被关联猜测!!!!
[Python] 纯文本查看 复制代码import urllib.request
import urllib.parse
import random
# 步数默认96000 至97999 随机数,可以自行修改。
# 接口限制,最高不得超过 98000。
step =random.randint(96000,97999)
# 账号
user = ""
# 密码
password = ""
if __name__ == '__main__':
main()
def main():
base_url = "https://apis.jxcxin.cn/api/mi?"
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36',
'host': 'apis.jxcxin.cn',
'Accept': '*/*',
}
data = {
"user": user,
"password": password,
'step': step,
'ver': 'cxydzsv3.1',
}
new_data = urllib.parse.urlencode(data)
url = base_url + new_data
request = urllib.request.Request(url=url,headers=headers)
response = urllib.request.urlopen(request)
content = response.read().decode("utf-8")
print(content)
#腾讯云函数
def main_handler(event, context):
return main()
#阿里云函数
def handler(event, context):
return main()
[color=]支持zepplife 邮箱、手机号码登录。
[color=]不会python的可以使用以下链接复制到浏览器,一键刷步数。
[HTML] 纯文本查看 复制代码https://apis.jxcxin.cn/api/mi?user=账号&password=密码&step=步数&ver=cxydzsv3.1