├── .env ├── .gitattributes ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── node-js └── api.js └── php └── api.php /.env: -------------------------------------------------------------------------------- 1 | MAIN_URL=https://test.com 2 | PATHS=LUQd425e5D1wb816gZXkhu5 3 | ADMINSECRET=2105435d-g5hd-486f-4ijp-37blj524f1458 4 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alix1383/hiddify-api/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | test.php 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alix1383/hiddify-api/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alix1383/hiddify-api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alix1383/hiddify-api/HEAD/README.md -------------------------------------------------------------------------------- /node-js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alix1383/hiddify-api/HEAD/node-js/api.js -------------------------------------------------------------------------------- /php/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alix1383/hiddify-api/HEAD/php/api.php --------------------------------------------------------------------------------