Marzban - получение токена по API: различия между версиями
Материал из Все о VPN, прокси и свободном интернете
Adminvpn1 (обсуждение | вклад) Нет описания правки |
Adminvpn1 (обсуждение | вклад) Нет описания правки |
||
Строка 31: | Строка 31: | ||
Другой вариант через python3 (curl > 8.3.0): | Другой вариант через python3 (curl > 8.3.0): | ||
curl -X 'POST' --variable passmarban=$PASS1111 'http://VPS_IP:PORT/api/admin/token' -H 'accept: application/json' -H 'Content-Type: application/x-www-form-urlencoded' -d "username=admin1" --expand-data "password={{passmarban}}" | python3 -c "import sys, json; print(json.load(sys.stdin)['access_token'])" | <nowiki>curl -X 'POST' --variable passmarban=$PASS1111 'http://VPS_IP:PORT/api/admin/token' -H 'accept: application/json' -H 'Content-Type: application/x-www-form-urlencoded' -d "username=admin1" --expand-data "password={{passmarban}}" | python3 -c "import sys, json; print(json.load(sys.stdin)['access_token'])"</nowiki> | ||
Links: | Links: | ||
https://stackoverflow.com/questions/1955505/parsing-json-with-unix-tools | https://stackoverflow.com/questions/1955505/parsing-json-with-unix-tools |
Версия от 21:36, 24 сентября 2024
Marzban - получение токена по API
Получение токена curl -X 'POST' \ 'http://VPS_IP:PORT/api/admin/token' \ -H 'accept: application/json' \ -H 'Content-Type: application/x-www-form-urlencoded' \ -d 'grant_type=&username=USER_HERE&password=PASS_HERE&scope=&client_id=&client_secret=' USER_HERE - заменить на свой PASS_HERE - заменить на свой
Парсинг через jq:
curl -X 'POST' \ 'http://VPS_IP:PORT/api/admin/token' \ -H 'accept: application/json' \ -H 'Content-Type: application/x-www-form-urlencoded' \ -d 'grant_type=&username=USER_HERE&password=PASS_HERE&scope=&client_id=&client_secret=' | jq
Вывести только токен (access_token):
Парсинг через python3: curl -X 'POST' \ 'http://VPS_IP:PORT/api/admin/token' \ -H 'accept: application/json' \ -H 'Content-Type: application/x-www-form-urlencoded' \ -d 'grant_type=&username=USER_HERE&password=PASS_HERE&scope=&client_id=&client_secret=' | python3 -c "import sys, json; print(json.load(sys.stdin) 'access_token'])"
Другой вариант через python3 (curl > 8.3.0):
curl -X 'POST' --variable passmarban=$PASS1111 'http://VPS_IP:PORT/api/admin/token' -H 'accept: application/json' -H 'Content-Type: application/x-www-form-urlencoded' -d "username=admin1" --expand-data "password={{passmarban}}" | python3 -c "import sys, json; print(json.load(sys.stdin)['access_token'])"
Links:
https://stackoverflow.com/questions/1955505/parsing-json-with-unix-tools