Download OpenAPI specification:Download
{- "contents": [
- {
- "id": 10,
- "contentType": 0,
- "title": "string",
- "publisher": "string",
- "date": "1/31/2025 7:29:55 AM",
- "downloadCount": 0,
- "voteAverageScore": 0,
- "songInfo": {
- "difficulties": [
- 0,
- 0,
- 0,
- 24,
- 29
], - "hasLua": true
}
}
]
}
contentIdのコンテンツ評価を新規登録する
vote
id | integer |
contentId | integer コンテンツのid番号 |
userId | string ユーザー固有のid文字列 |
name | string 投稿者名 |
score | integer 評価の値 (1~5) |
comment | string 評価一覧で表示されるコメント |
like | integer いいね数 |
date | string UTC時間 |
{- "id": 0,
- "contentId": 0,
- "userId": "string",
- "name": "string",
- "score": 0,
- "comment": "string",
- "like": 0,
- "date": "string"
}
contentIdのコンテンツ評価を編集する
vote
id | integer |
contentId | integer コンテンツのid番号 |
userId | string ユーザー固有のid文字列 |
name | string 投稿者名 |
score | integer 評価の値 (1~5) |
comment | string 評価一覧で表示されるコメント |
like | integer いいね数 |
date | string UTC時間 |
{- "id": 0,
- "contentId": 0,
- "userId": "string",
- "name": "string",
- "score": 0,
- "comment": "string",
- "like": 0,
- "date": "string"
}
ユーザーのアカウント情報を更新します
accountId | string アカウントID文字列 |
password | string アカウントのパスワード |
token | string JWTトークン |
name | string アカウント名 |
icon | integer アイコン画像ID |
{- "accountId": "string",
- "password": "string",
- "token": "string",
- "name": "string",
- "icon": 0
}
アカウントにログインします
accountId | string アカウントID文字列 |
password | string パスワード |
{- "accountId": "string",
- "password": "string"
}
{- "success": true,
- "message": "string",
- "account": {
- "accountId": "string",
- "token": "string",
- "name": "string",
- "icon": 0
}
}
ランキングを登録、または既存データを更新する
songTitle required | string 曲名 |
difficulty required | integer 難易度 |
chartHash required | string 譜面の識別用ハッシュ |
accountId required | string ユーザーID |
accountToken required | string アカウントのトークン |
score required | integer プレイ時のスコア |
maxScore required | integer その曲の最大スコア(満点判定用) |
{- "songTitle": "string",
- "difficulty": 0,
- "chartHash": "string",
- "accountId": "string",
- "accountToken": "string",
- "score": 0,
- "maxScore": 0
}
{- "message": "Ranking updated successfully.",
- "error": null
}