├── .gitignore ├── .idea ├── .gitignore └── vcs.xml ├── DEV_README.md ├── LICENSE ├── Makefile ├── README.md ├── const.go ├── errors.go ├── feed.go ├── feed_online_test.go ├── go.mod ├── go.sum ├── http_proxy.go ├── live.go ├── live_online_test.go ├── logging.go ├── options.go ├── proto ├── data.pb.go ├── data.proto ├── enums.pb.go ├── enums.proto ├── webcast.pb.go └── webcast.proto ├── requests.go ├── test_types └── config.go ├── tiktok.go ├── tiktok_online_test.go ├── types.go ├── utils.go ├── wss.go └── wss_online_test.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /DEV_README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/DEV_README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/README.md -------------------------------------------------------------------------------- /const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/const.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/errors.go -------------------------------------------------------------------------------- /feed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/feed.go -------------------------------------------------------------------------------- /feed_online_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/feed_online_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/go.sum -------------------------------------------------------------------------------- /http_proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/http_proxy.go -------------------------------------------------------------------------------- /live.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/live.go -------------------------------------------------------------------------------- /live_online_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/live_online_test.go -------------------------------------------------------------------------------- /logging.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/logging.go -------------------------------------------------------------------------------- /options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/options.go -------------------------------------------------------------------------------- /proto/data.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/proto/data.pb.go -------------------------------------------------------------------------------- /proto/data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/proto/data.proto -------------------------------------------------------------------------------- /proto/enums.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/proto/enums.pb.go -------------------------------------------------------------------------------- /proto/enums.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/proto/enums.proto -------------------------------------------------------------------------------- /proto/webcast.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/proto/webcast.pb.go -------------------------------------------------------------------------------- /proto/webcast.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/proto/webcast.proto -------------------------------------------------------------------------------- /requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/requests.go -------------------------------------------------------------------------------- /test_types/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/test_types/config.go -------------------------------------------------------------------------------- /tiktok.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/tiktok.go -------------------------------------------------------------------------------- /tiktok_online_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/tiktok_online_test.go -------------------------------------------------------------------------------- /types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/types.go -------------------------------------------------------------------------------- /utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/utils.go -------------------------------------------------------------------------------- /wss.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/wss.go -------------------------------------------------------------------------------- /wss_online_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steampoweredtaco/gotiktoklive/HEAD/wss_online_test.go --------------------------------------------------------------------------------