Skip to content

微信刷步API

开始之前你需要下载小米运动官方APP(Zepp Life),并注册。

接口详情

调用方式:GET

接口地址

http://api.zlovey.cn/wx

接口参数

参数名称类型是否必填说明
userstringZepp Life的用户名
passwordstringZepp Life的密码
stepstring步数,为空则是30000步到38000步的随机数

调用示例

直接调用
shell
http://api.zlovey.cn/wx?user=17xxxxxxxx&password=*******&step=输入数字,为空则是30000步到38000步的随机数
python调用
python
import requests

url = "http://api.zlovey.cn/wx"

querystring = {
    "user":"你的用户名",
    "password":"你的密码",
    "step":"你的步数,为空则是30000步到38000步的随机数"
    }

response = requests.request("GET", url, data=payload, headers=headers, params=querystring)

print(response.text)
php调用
php
<?php

$request = new HttpRequest();
$request->setUrl('http://api.zlovey.cn/wx');
$request->setMethod(HTTP_METH_GET);

$request->setQueryData([
    "user" => "你的用户名",
    "password" => "你的密码",
    "step" => "你的步数,为空则是30000步到38000步的随机数"
]);

try {
  $response = $request->send();

  echo $response->getBody();
} catch (HttpException $ex) {
  echo $ex;
}

返回示例

json
{
	"code": 200,
	"msg": "已提交步数:30000"
}