Title here
Summary here
xingzhe-export-gpx 可以将行者运动App的数据导出为GPX文件,方便在其他平台上查看和分析。
下载源码:
git clone https://github.com/weaming/xingzhe-export-gpx.git
cd xingzhe-export-gpx
yarn; npm install typescript
yarn build
将上面获取到的cookie和userid填入config.js
中。
const xingzhe_prefix = 'https://www.imxingzhe.com'
const user_month_info = '/api/v4/user_month_info/'
// 选择下载年份
const year = '2023'
// 填写个人user_id
const user_id = '6413500'
// 填写个人xingzhe cookie, https://imxingzhe.com
const xingzhe_cookie = ''
module.exports = {
xingzhe_prefix,
user_month_info,
year,
user_id,
xingzhe_cookie,
}