|
|
@@ -49,13 +49,14 @@ async def get_article_detail(
|
|
|
|
|
|
|
|
|
@retry(**retry_desc)
|
|
|
-async def get_article_list_from_account(account_id: str, index=None) -> dict | None:
|
|
|
+async def get_article_list_from_account(account_id: str, index=None, is_cache=True) -> dict | None:
|
|
|
target_url = f"{base_url}/blogger"
|
|
|
payload = json.dumps(
|
|
|
{
|
|
|
"account_id": account_id,
|
|
|
"cursor": index,
|
|
|
"token": "1fa4c0ad5c66e43ebd525611f3869f53",
|
|
|
+ "is_cache": is_cache,
|
|
|
}
|
|
|
)
|
|
|
try:
|