Sample code for 30+ languages & platforms
PowerShell

Configure HTTP Basic Authentication with SecureString

See more REST Examples

Demonstrates Rest.SetAuthBasicSecure, which configures HTTP Basic authentication using SecureString objects instead of plaintext strings.

Background. A SecureString keeps sensitive values encrypted in memory, reducing the window in which credentials appear as readable plaintext. This is otherwise equivalent to SetAuthBasic.

Chilkat PowerShell Downloads

PowerShell
Add-Type -Path "C:\chilkat\ChilkatDotNet47-x64\ChilkatDotNet47.dll"

$success = $false

$rest = New-Object Chilkat.Rest
$bTls = $true
$bAutoReconnect = $true
$success = $rest.Connect("example.com",443,$bTls,$bAutoReconnect)
if ($success -eq $false) {
    $($rest.LastErrorText)
    exit
}

#  SetAuthBasicSecure configures HTTP Basic authentication using SecureString objects, which keep
#  the credentials encrypted in memory.
#  Normally you would not hard-code secrets in source.  You should instead obtain them from an
#  interactive prompt, environment variable, or a secrets vault.
$ssUsername = New-Object Chilkat.SecureString
$ssUsername.Append("myUsername")
$ssPassword = New-Object Chilkat.SecureString
$ssPassword.Append("myPassword")

$success = $rest.SetAuthBasicSecure($ssUsername,$ssPassword)
if ($success -eq $false) {
    $($rest.LastErrorText)
    exit
}

$responseText = $rest.FullRequestNoBody("GET","/api/protected")
if ($rest.LastMethodSuccess -eq $false) {
    $($rest.LastErrorText)
    exit
}

$($responseText)