新增ai评分互动,暂时删除投票活动

This commit is contained in:
zhangdongxu 2023-12-29 00:19:23 +08:00
parent 2f117f2952
commit 9907bcea49

View File

@ -77,6 +77,18 @@ def to_vote():
break
# AI评分 +1
def ai_score():
data = {
"optionId": 17629,
"score": 1
}
url = "https://mk-gateway-pro.singworld.cn/mk-outside/api/event/setScore"
# 添加 verify=False 来忽略SSL证书验证
response = requests.post(url, headers=headers, json=data, verify=False)
# 领取所有咪豆
def get_all_mido():
data = {} # 如果需要发送数据,可以在这里填写你的数据字典
@ -184,6 +196,8 @@ if __name__ == '__main__':
# 3.点赞 +1
to_like()
# 4.投票 +1
to_vote()
# 5.领取咪豆
# to_vote()
# 5.AI评分 +1
ai_score()
# 6.领取咪豆
get_all_mido()