Skip to content
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.

Commit

Permalink
add favorites, fix builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Djuk1c committed Nov 1, 2022
1 parent 255305e commit a8c62f2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Automated with API requests, not using selenium or any other webdriver.
Bypasses captcha and bots all available services for a given video.
### Binaries (untested) available for windows in builds
### Binaries (untested) available for windows in bin
![](https://i.imgur.com/gntZJsg.png)
## Compiling the project

Expand Down
Binary file added bin/zefoy-32bit.exe
Binary file not shown.
Binary file added bin/zefoy-64bit.exe
Binary file not shown.
2 changes: 2 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
GOOS=windows GOARCH=amd64 go build -o bin/zefoy-64bit.exe .
GOOS=windows GOARCH=386 go build -o bin/zefoy-32bit.exe .
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ var (
"views": "c2VuZC9mb2xsb3dlcnNfdGlrdG9V",
"hearts": "c2VuZE9nb2xsb3dlcnNfdGlrdG9r",
"followers": "c2VuZF9mb2xsb3dlcnNfdGlrdG9r",
"favorites": "c2VuZF9mb2xsb3dlcnNfdGlrdG9L",
}
aweme_id string
count uint32
Expand All @@ -34,6 +35,7 @@ func main() {
go Thread("views")
go Thread("hearts")
go Thread("followers")
go Thread("favorites")

select {} // Infinite "sleep" on main thread
}
Expand Down

0 comments on commit a8c62f2

Please sign in to comment.