豆瓣小组自动化脚本

gist地址

豆瓣小组删除发帖需要将所有的回帖都删除,所以这个脚本可以快速的删除所有回帖。方便删除发帖。

# 其中ck和topic_id需要自己获取

$(".operation-more a").each(function(){
var id = $(this).attr('data-cid');
var topic_id = window.location.href.split('/')[5];
if(id) {
$.post(
"https://www.douban.com/j/group/topic/"+ topic_id +"/remove_comment",
{
"ck": "<ck>",
"cid": id
},
);
$.post(
"https://www.douban.com/group/topic/"+ topic_id +"/remove_comment?cid=" + id,
{
"ck": "<ck>",
"cid": id,
"reason": "other_reason",
"other": "删除帖子"
},
)

}

})