From b9d30bbabbb52ae43553fb88cf03fbd83ae68bd0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A8=8B=E5=BA=8F=E5=91=98=E9=98=BF=E6=B1=9F=28Relakkes?= =?UTF-8?q?=29?= Date: Fri, 1 Aug 2025 15:55:21 +0800 Subject: [PATCH] fix: #693 --- 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 0e9b0f8..8526a3e 100644 --- a/media_platform/xhs/core.py +++ b/media_platform/xhs/core.py @@ -275,7 +275,7 @@ class XiaoHongShuCrawler(AbstractCrawler): pass if not note_detail: - note_detail = await self.xhs_client.get_note_by_id_from_html(note_id, xsec_source, xsec_token, enable_cookie=False) + note_detail = await self.xhs_client.get_note_by_id_from_html(note_id, xsec_source, xsec_token, enable_cookie=True) if not note_detail: raise Exception(f"[get_note_detail_async_task] Failed to get note detail, Id: {note_id}")