From 0c2922fea5789d54362daf1b220db3ad2ba9ca88 Mon Sep 17 00:00:00 2001 From: PeasantWorker <2608882093@qq.com> Date: Fri, 24 Dec 2021 12:01:54 +0800 Subject: [PATCH] extract code success --- main.py | 7 ++++++- src/ebook/community.py | 5 +---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index d827e29..0e1067f 100644 --- a/main.py +++ b/main.py @@ -11,4 +11,9 @@ if __name__ == "__main__": print('开始向社区发帖') book_dir = 'data/{}/'.format(key) mapping_path = 'data/{}.json'.format(key) - # send_topic(web_url, book_dir, mapping_path) \ No newline at end of file + send_topic_request_param = { + "cateId": 20964, + "communityId": 3824, + "loginUserName": "BBS_Assistant" + } + send_topic(web_url, book_dir, mapping_path, send_topic_request_param) \ No newline at end of file diff --git a/src/ebook/community.py b/src/ebook/community.py index 85176e0..fc08765 100644 --- a/src/ebook/community.py +++ b/src/ebook/community.py @@ -65,7 +65,7 @@ def post(url, params, retry=3, headers=None): raise error -def send_topic(web_url, book_dir, mapping_path): +def send_topic(web_url, book_dir, mapping_path, send_topic_request_param): data_dir = 'data' # web_url = "https://codechina.csdn.net/csdn/book_code_c798a5992a654857867ec15660e1c32a/-/blob/master/" request_url = 'http://ccloud.internal.csdn.net/v1/internal/community/content/sendTopic' @@ -99,12 +99,9 @@ def send_topic(web_url, book_dir, mapping_path): send_topic_request_param = { "type": "long_text", - "cateId": 20967, "content": topic_content, "topicTitle": topic_title, "mdContent": topic_content, - "communityId": 3823, - "loginUserName": "BBS_Assistant", "bizNo": "ebook" } -- GitLab