From 9fb8f42f692fb0c79d43286801edbc2f39a28252 Mon Sep 17 00:00:00 2001 From: Wenbo Lu Date: Fri, 26 Jul 2024 21:55:31 +0800 Subject: [PATCH] fetch_creator_notes_detail, id ->note_id --- media_platform/xhs/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media_platform/xhs/core.py b/media_platform/xhs/core.py index a8d3172..061f073 100644 --- a/media_platform/xhs/core.py +++ b/media_platform/xhs/core.py @@ -164,7 +164,7 @@ class XiaoHongShuCrawler(AbstractCrawler): semaphore = asyncio.Semaphore(config.MAX_CONCURRENCY_NUM) task_list = [ self.get_note_detail( - note_id=post_item.get("id"), + note_id=post_item.get("note_id"), xsec_source=post_item.get("xsec_source"), xsec_token=post_item.get("xsec_token"), semaphore=semaphore