From 64dd6d6e9ba31d71a2d365f1ee120ef64dd7d0c2 Mon Sep 17 00:00:00 2001 From: lixiangwuxian Date: Sat, 8 Mar 2025 20:02:34 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BC=98=E5=8C=96=20BeatLeader=20?= =?UTF-8?q?=E6=9C=80=E8=BF=91=E6=88=90=E7=BB=A9=E8=8E=B7=E5=8F=96=E7=9A=84?= =?UTF-8?q?=20API=20=E8=AF=B7=E6=B1=82=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- service/beatleader/bind_bl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/beatleader/bind_bl.go b/service/beatleader/bind_bl.go index 7a900a6..77fee73 100644 --- a/service/beatleader/bind_bl.go +++ b/service/beatleader/bind_bl.go @@ -324,7 +324,7 @@ func (bl *blQuery) GetRecentScores(count int, qqId string) ([]RecordDataLite, er return nil, err } //从线上获取 - historyUrl := "https://api.beatleader.xyz/player/%s/scores?count=%d&sortBy=date&order=desc" + historyUrl := "https://api.beatleader.xyz/player/%s/scores?count=%d&leaderboardContext=general&page=1&sortBy=date&order=desc&search=&diff=&mode=&requirements=&type=&hmd=&modifiers=&stars_from=&stars_to=&eventId=&includeIO=true" fullUrl := fmt.Sprintf(historyUrl, blId, count) resp, err := http.Get(fullUrl) if err != nil {