DNS API Powershell example

Support Wissensdatenbank

Du bist hier:
Print

Nella sezione seguente viene presentato un semplice esempio di utilizzo dell’API DNS in PowerShell:

$username = ""
$password = ""
$base64AuthInfo = [Convert]::ToBase64String([Text.Encoding]::ASCII.GetBytes(("{0}:{1}" -f $username,$password)))

$url = 'https://api.firestorm.ch/dns/v1/zones'
$result = Invoke-RestMethod -Headers @{Authorization=("Basic {0}" -f $base64AuthInfo)} -uri $url

Write-Host $result

Compilare le due variabili “username” e “password” con i dati di accesso corretti per accedere all’interfaccia di amministrazione.
Prima di utilizzare l’API, è necessario attivarla nell’interfaccia di amministrazione (in Account > Profilo cliente).

War dieser Artikel hilfreich?
0 out Of 5 Stars
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
Wie können wir diesen Artikel verbessern?
Please submit the reason for your vote so that we can improve the article.
Brauchst du Hilfe?
Tags:
Related Post