toast-notification-examples icon indicating copy to clipboard operation
toast-notification-examples copied to clipboard

Image with https src doesn't work

Open noBloodOnTheLeaves opened this issue 1 year ago • 1 comments

I tried to repeat Messaging example. But image didn't show.

noBloodOnTheLeaves avatar Jan 21 '24 16:01 noBloodOnTheLeaves

Alternative solution - download picture to local folder and use it.

#get cat photo from api
$image = Invoke-WebRequest -Uri 'https://api.thecatapi.com/v1/images/search?size=small' -Method Get
$jsonObj = ConvertFrom-Json $([String]::new($image.Content))

#download photo to local folder
$wc = New-Object System.Net.WebClient
$wc.DownloadFile($jsonObj.url, "C:\Users\User\Pictures\test.jpg")

noBloodOnTheLeaves avatar Jan 22 '24 16:01 noBloodOnTheLeaves