From b8485ac1f86cd4d8e35b8b957f0965265690befe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A5=87=E8=91=A9=E3=81=AE=E7=81=B5=E6=A2=A6?= Date: Fri, 8 Nov 2024 14:37:05 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9F=A5=E8=AF=A2=E5=85=B3=E6=B3=A8=E5=88=86?= =?UTF-8?q?=E7=BB=84=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- user.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user.go b/user.go index 77c356b..0b31c66 100644 --- a/user.go +++ b/user.go @@ -742,7 +742,7 @@ type RelationTag struct { func (c *Client) GetRelationTags() ([]RelationTag, error) { const ( method = resty.MethodGet - url = "https://api.bilibili.com/x/relation/relations" + url = "https://api.bilibili.com/x/relation/tags" ) return execute[[]RelationTag](c, method, url, nil) }