Merge pull request #316 from AragornJIA/main

修复无法采集小红书 creator IP 归属信息的问题
This commit is contained in:
程序员阿江-Relakkes 2024-06-26 23:04:12 +08:00 committed by GitHub
commit 86a88f7260
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ async def save_creator(user_id: str, creator: Dict):
'gender': '' if user_info.get('gender') == 1 else '',
'avatar': user_info.get('images'),
'desc': user_info.get('desc'),
'ip_location': user_info.get('ip_location'),
'ip_location': user_info.get('ipLocation'),
'follows': follows,
'fans': fans,
'interaction': interaction,