PowerShell API İstek Gönderme | Sistem

Merhaba, bir sunucudan bir API uygulamasına zaman zaman erişim problemi yaşadığımızı düşünüyordum.
Bir IP’ye ping atar gibi o servise sürekli istek gönderip izleyeyim diye düşündüm.
Windows Powershell’de şu şekilde yapılabiliyormuş:

$uri = "https://catfact.ninja/fact"
$method = "GET"

while ($true) {
    $response = Invoke-RestMethod -Uri $uri -Method $method -ContentType "application/json"
    $timestamp = Get-Date -Format "yyyy-MM-dd HH:mm:ss"
    Write-Output "[$timestamp] Response: $response"
    Start-Sleep -Seconds 10
}

Selamlar.

Leave a Reply

Your email address will not be published. Required fields are marked *