Voici une API pour transformer une URL en URL reduite avec le service TinyURL:
http://tinyurl.com/api-create.php?url=www.perdu.com
donne un resultat du type:
http://tinyurl.com/phy6
En PowerShell
$url = Read-Host "Enter the Url" Invoke-RestMethod -Uri "http://tinyurl.com/api-create.php?url=$url" | clip
Aucun commentaire:
Enregistrer un commentaire