|
|
@@ -273,7 +273,15 @@ class InnerGzhArticlesMonitor(MonitorConst):
|
|
|
return response
|
|
|
|
|
|
async def check_each_article(self, article: dict):
|
|
|
- gh_id, account_name, title, url, wx_sn, publish_date = article
|
|
|
+ # gh_id, account_name, title, url, wx_sn, publish_date = article
|
|
|
+ gh_id, account_name, title, url, wx_sn, publish_date = (
|
|
|
+ article["ghId"],
|
|
|
+ article["accountName"],
|
|
|
+ article["title"],
|
|
|
+ article["ContentUrl"],
|
|
|
+ article["wx_sn"],
|
|
|
+ article["publish_timestamp"],
|
|
|
+ )
|
|
|
try:
|
|
|
response = await get_article_detail(url, is_cache=False)
|
|
|
response_code = response["code"]
|