微信/支付宝运动步数修改接口开源

基于 Zepp Life(原小米运动)API 构建,支持一键同步自定义步数到微信和支付宝运动。

项目简介

通过 Zepp Life 官方 API 实现步数同步工具,提供简洁的 HTTP 接口,支持 POST 和 GET 两种调用方式。

快速开始

API 接口说明

POST 方式

text
1 2 3 4 5 6 7 8
POST /api/update-steps
Content-Type: application/json

{
  "account": "您的账号",
  "password": "您的密码",
  "steps": 步数值
}

GET 方式

text
1
GET /api/update-steps?account=您的账号&password=您的密码&steps=想要的步数

参数说明

参数名 类型 必填 说明
account string Zepp Life 账号(邮箱或手机号)
password string 账号密码
steps number 目标步数(不填则随机生成 20000–30000)

调用示例

text
1
https://steps.luozhinet.com/api/update-steps?account=example@mail.com&password=yourpassword&steps=25000

返回结果

json
1 2 3 4 5
{
  "success": true,
  "message": "步数修改成功: 25000",
  "data": { ... }
}

效果展示

步数修改效果
接口调用示例
微信运动同步