La particolare API che sto usando è pensata per essere usata con cURL like
$ curl -F "file=@test.txt" https://file.io/?expires=1w
Non riesco a capire come emulare il "-F" usando PowerShell.
powershell Invoke-RestMethod -Uri 'https://website.com' -Method POST -InFile .\file.txt
Non abbiamo bisogno di usare Invoke-RestMethod
se c'è un modo più semplice. Sono aperto a suggerimenti.
$ ifconfig | curl -F "file=@-" https://website.com/~foo
-F
parametro?