для пользователей линукс и мак)) Поменять только номер кандидата и фамилию curl https://www.greek-language.gr/certification/results/index.html -X POST -H 'Content-Type: application/x-www-form-urlencoded' --data-raw 'inputCenterCode=35703&inputCandidateCode=1234&inputCandidateSurname=PUPKIN'

2024-07-23 08:30:44


только можно без -X POST, --data-raw уже постом отправит

2024-07-23 08:42:07


Аналогично для винды: Invoke-WebRequest https://www.greek-language.gr/certification/results/index.html -Method POST -Headers @{ 'Content-Type' = 'application/x-www-form-urlencoded' } -Body @{'inputCenterCode' = '35703'; 'inputCandidateCode' = '1234'; 'inputCandidateSurname' = 'PUPKIN' } | Select-Object -ExpandProperty Content

2024-07-23 10:10:20


Краудстрайка на вас не хватает

2024-07-23 11:44:40