fix(net-tool): 修复 LarkWikiService 中的 getNodeInfo 方法以使用 GET 请求
All checks were successful
/ release (push) Successful in 27s

This commit is contained in:
zhaoyingbo 2025-01-27 14:13:59 +00:00
parent c0de941ba8
commit 3cd595638e

View File

@ -9,7 +9,7 @@ class LarkWikiService extends LarkBaseService {
*/
async getNodeInfo(token: string) {
const path = `/wiki/v2/spaces/get_node`
return this.post<Lark.WikiNodeData>(path, { token })
return this.get<Lark.WikiNodeData>(path, { token })
}
}