├── LICENSE ├── README.md ├── documented_payload.js ├── go.mod ├── main.go ├── orig.js ├── payload_example.json └── structs.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post04/datadome-documentation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post04/datadome-documentation/HEAD/README.md -------------------------------------------------------------------------------- /documented_payload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post04/datadome-documentation/HEAD/documented_payload.js -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/post04/datadome-gen-golang 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post04/datadome-documentation/HEAD/main.go -------------------------------------------------------------------------------- /orig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post04/datadome-documentation/HEAD/orig.js -------------------------------------------------------------------------------- /payload_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post04/datadome-documentation/HEAD/payload_example.json -------------------------------------------------------------------------------- /structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/post04/datadome-documentation/HEAD/structs.go --------------------------------------------------------------------------------