ppy / osu-api

Public API for accessing osu! related data.
319 stars 16 forks source link

Expand api: get_score #16

Closed ghost closed 10 years ago

ghost commented 11 years ago

Can you make visible the record up to 500 in get_score?

I need it to associate the recent activity on the scores

peppy commented 11 years ago

What is the particular use case here?

ghost commented 11 years ago

I need to create a detailed time-line of recent activity for a website that allows viewing advanced statistics and comparison - per beatmap information - between players

peppy commented 11 years ago

History events are currently not linked to scores directly, so this won't be possible for now. I will consider adding such a link in the future, and support for looking up specific scores.

iebb commented 11 years ago

It will be good for something like osu!tp to display top500 score.

peppy commented 10 years ago

You should be able to use this change to get_scores to attempt lookups for history events. Keep in mind I only keep the latest score per map, so if a user beats their score several times you will only be able to retrieve the latest score. You can check in this case by matching the date parameters in both lookups.

Let me know if this is enough.