ppy / osu-web

the browser-facing portion of osu!
https://osu.ppy.sh
GNU Affero General Public License v3.0
981 stars 384 forks source link

document `/api/v2/users/{user_id}/beatmapsets/most_played` returning a beatmapset_id in `BeatmapCompact` response #7830

Closed tybug closed 3 years ago

tybug commented 3 years ago

hitting https://osu.ppy.sh/api/v2/users/12092800/beatmapsets/most_played gives, in part, this response:

[
    {
        "beatmap_id": 1626537,
        "count": 202,
        "beatmap": {
            "beatmapset_id": 773330,
            "difficulty_rating": 6.45,
            "id": 1626537,
            "mode": "osu",
            "status": "ranked",
            "total_length": 130,
            "user_id": 3388410,
            "version": "Sotarks' Peace of Mind"
        },
        "beatmapset": {
            "artist": "Nanamori-chu * Goraku-bu",
            "artist_unicode": "\u4e03\u68ee\u4e2d\u2606\u3054\u3089\u304f\u90e8",
            "covers": {
                "cover": "https://assets.ppy.sh/beatmaps/773330/covers/cover.jpg?1622138864",
                "cover@2x": "https://assets.ppy.sh/beatmaps/773330/covers/cover@2x.jpg?1622138864",
                "card": "https://assets.ppy.sh/beatmaps/773330/covers/card.jpg?1622138864",
                "card@2x": "https://assets.ppy.sh/beatmaps/773330/covers/card@2x.jpg?1622138864",
                "list": "https://assets.ppy.sh/beatmaps/773330/covers/list.jpg?1622138864",
                "list@2x": "https://assets.ppy.sh/beatmaps/773330/covers/list@2x.jpg?1622138864",
                "slimcover": "https://assets.ppy.sh/beatmaps/773330/covers/slimcover.jpg?1622138864",
                "slimcover@2x": "https://assets.ppy.sh/beatmaps/773330/covers/slimcover@2x.jpg?1622138864"
            },
            "creator": "eiri-",
            "favourite_count": 1052,
            "hype": null,
            "id": 773330,
            "nsfw": false,
            "play_count": 5337495,
            "preview_url": "//b.ppy.sh/preview/773330.mp3",
            "source": "\u3086\u308b\u3086\u308a",
            "status": "ranked",
            "title": "Happy Time wa Owaranai",
            "title_unicode": "\u30cf\u30c3\u30d4\u30fc\u30bf\u30a4\u30e0\u306f\u7d42\u308f\u3089\u306a\u3044",
            "user_id": 3388410,
            "video": false
        }
    },
    ...

The beatmap attribute (which is documented as a BeatmapCompact) has an extra beatmapset_id parameter that isn't documented in BeatmapCompact.

tybug commented 3 years ago

closed by #8242