http://live.sports.ifeng.com/match/552.html
直接用Go语言来写下刷票。
package main import ( "fmt" "net/http" ) func vote(a chan int) { for i := 0; i <= 1000; i++ { http.Get("http://survey.news.ifeng.com/accumulator_ext.PHP?callback=jQuery1820030119983945041895_1490671752116&key=customLiveaway_support_552&format=js&_=1490671777810") } a <- 0 } func main() { a := make(chan int,30) for i := 0; i < 30; i++ { go vote(a) } for b := range a { fmt.Println(b) } }
上面的代码能刷3W票。
随随便便,我就刷了接近30W票。
原文链接:https://www.f2er.com/go/188738.html