Skip to content

Instantly share code, notes, and snippets.

@steviecoaster
Created August 19, 2019 21:14
Show Gist options
  • Save steviecoaster/0aa95ba792a8067c7db329b9b398fb20 to your computer and use it in GitHub Desktop.
Save steviecoaster/0aa95ba792a8067c7db329b9b398fb20 to your computer and use it in GitHub Desktop.
Because dad jokes are always fun.
function Get-DadJoke {
[cmdletBinding()]
Param()
process {
$header = @{
Accept = "application/json"
}
$joke = Invoke-RestMethod -Uri "https://icanhazdadjoke.com/" -Method Get -Headers $header
$joke.joke
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment