├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── const.go ├── feed.go ├── feed_test.go ├── go.mod ├── go.sum ├── http_proxy.go ├── live.go ├── live_test.go ├── proto ├── tiktok.pb.go └── tiktok.proto ├── requests.go ├── tests ├── config.go ├── live_test.go └── tiktok_test.go ├── tiktok.go ├── types.go ├── utils.go ├── wss.go └── wss_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/README.md -------------------------------------------------------------------------------- /const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/const.go -------------------------------------------------------------------------------- /feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/feed.go -------------------------------------------------------------------------------- /feed_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/feed_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/go.sum -------------------------------------------------------------------------------- /http_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/http_proxy.go -------------------------------------------------------------------------------- /live.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/live.go -------------------------------------------------------------------------------- /live_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/live_test.go -------------------------------------------------------------------------------- /proto/tiktok.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/proto/tiktok.pb.go -------------------------------------------------------------------------------- /proto/tiktok.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/proto/tiktok.proto -------------------------------------------------------------------------------- /requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/requests.go -------------------------------------------------------------------------------- /tests/config.go: -------------------------------------------------------------------------------- 1 | package tests 2 | 3 | var ( 4 | USERNAME = "r_sciroc" 5 | ) 6 | -------------------------------------------------------------------------------- /tests/live_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/tests/live_test.go -------------------------------------------------------------------------------- /tests/tiktok_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/tests/tiktok_test.go -------------------------------------------------------------------------------- /tiktok.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/tiktok.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/types.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/utils.go -------------------------------------------------------------------------------- /wss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/wss.go -------------------------------------------------------------------------------- /wss_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Davincible/gotiktoklive/HEAD/wss_test.go --------------------------------------------------------------------------------