fix(mihoyo/bbs): 修复 timeline API URL (#17806)

- 更新 timeline API URL 以匹配最新的 API 路径
This commit is contained in:
CaoMeiYouRen 2024-12-05 23:53:45 +08:00 committed by GitHub
parent 166e69bfaa
commit db98160eed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ async function handler(ctx) {
page_size,
};
const link = 'https://www.miyoushe.com/ys/timeline';
const url = 'https://bbs-api.miyoushe.com/post/wapi/timelines';
const url = 'https://bbs-api.miyoushe.com/painter/wapi/timeline/list';
const response = await got({
method: 'get',
url,