游玩

上传

获取token

GET https://arcapi.lowiro.com/latte/13/score/token

{
    "success": true,
    "value": {
        "token": songToken
    }
}

​上传成绩

POST https://arcapi.lowiro.com/latte/13/score/song

Request Body

NameTypeDescription

song_token

string

songToken

song_hash

string

​铺面文件Hash值(MD5编码)

song_id

string

​曲目ID

difficulty

number

​难度

score

number

​分数

shiny_perfect_count

number

​完美Perfect数

perfect_count

number

​Perfect总数

near_count

number

​Far个数

miss_count

number

​Lost个数

health

number

​回忆率(血量)

modifier

number

挑战型 2 其他为 1

beyond_gauge

number

clear_type

number

​通关类型

submission_hash

string

​MD5(song_token + song_hash + song_id + difficulty + score + shiny_perfect_count + perfect_count+ near_count + miss_count + health + modifier + clear_type + MD5($UserID + song_hash))

{
    "success": true,
    "value": {
        "user_rating": rating
    }
}

排行榜

由于某些原因,616关闭了免费包曲目的世界排行榜

所以我在这里再次声明:本文档仅作学习用途,请勿滥用!否则后果自负!

我的排名

GET https://arcapi.lowiro.com/latte/13/score/song/me

​排行榜中条目的序号由排名高到低从0开始计数

Query Parameters

NameTypeDescription

song_id

string

​曲目ID

difficulty

number

​难度(表示方法同上传成绩中difficulty一栏)

start

number

​玩家所在条目的序号

limit

number

排名最低的条目的序号(​即总显示条目数 - 1)

{
    "success": true,
    "value": [ 成绩对象 * (limit+1) ]
}

​好友

GET https://arcapi.lowiro.com/latte/13/score/song/friend

Query Parameters

NameTypeDescription

song_id

string

​曲目ID

difficulty

number

​难度

start

number

默认为0(不知道在好友很多的时候会是什么)

limit

number

最多显示条目数 - 1

{
    "success": true,
    "value": [ 成绩对象  * (limit+1) ]
}

​世界

GET https://arcapi.lowiro.com/latte/13/score/song

Query Parameters

NameTypeDescription

song_id

string

​曲目ID

difficulty

number

​难度

start

number

​默认为0(不知道如果玩家在世界榜里会是什么)

limit

number

​最多显示条目数 - 1

{
    "success": true,
    "value": [ 成绩对象  * (limit+1) ]
}

最后更新于