Merge pull request #360 from fruitswordman/xhs_note_id

<bug fix> fetch_creator_notes_detail: id ->note_id
This commit is contained in:
程序员阿江-Relakkes 2024-07-27 18:10:34 +08:00 committed by GitHub
commit ccf71f0905
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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