├── .gitignore ├── LICENSE ├── README.md ├── api └── api.go ├── browser └── browser.go ├── go.mod ├── go.sum ├── main.go └── templates └── arkose.html /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | chatgpt-arkose-token-api 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiyuan/chatgpt-arkose-token-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # chatgpt-arkose-token-api 2 | 3 | --- 4 | 5 | 本地调试环境变量 6 | 7 | - `PLAYWRIGHT_NODEJS_PATH=/usr/bin/node` 8 | - `PORT=12345` 9 | -------------------------------------------------------------------------------- /api/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiyuan/chatgpt-arkose-token-api/HEAD/api/api.go -------------------------------------------------------------------------------- /browser/browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiyuan/chatgpt-arkose-token-api/HEAD/browser/browser.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiyuan/chatgpt-arkose-token-api/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiyuan/chatgpt-arkose-token-api/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiyuan/chatgpt-arkose-token-api/HEAD/main.go -------------------------------------------------------------------------------- /templates/arkose.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linweiyuan/chatgpt-arkose-token-api/HEAD/templates/arkose.html --------------------------------------------------------------------------------