我不是标题党!
首先,放图片(((
时间这里是录视频的时间,2021-8-27,不是标题党!
上方法!
主要原理:利用抓包抓到的点赞api端口,实现持续点击或控制点击数量((
接口:https://lv.dingtalk.com/interaction/createLike?uuid=8d893cc7-4d09-47c6-ad6f-b6ffac828e58&count=111
这里,uuid为直播id。想要获取,还是蛮麻烦的qaq,主要通过Fiddler吧 抓到直播视频的地址,就可以看到请求的直播id了。
id是由5串字符串,4个杠组成,
count 是点击数量,最大到1*10^8 hhh
想要一下子点够?直接访问https://lv.dingtalk.com/interaction/createLike?uuid=(直播id)&count=12345678
想要破除点赞限制的快感,请用py:
import requests
import random
s=requests.session()
while True:
s.get('https://lv.dingtalk.com/interaction/createLike?uuid=(直播id)&count='+str(int(random.random()*100)))
着急写博客,都懒得用Latex了aaa