Nuevo en AppleScript y en la codificación. Primer script que intento compilar:
- Seleccionar y copiar la URL en la pestaña actual de Safari
- Enviarlo a bit.ly
-
Tener la URL acortada copiada en el portapapeles
property theURL : "" property bitlyToken : "0c60279f1425ac413d021f797d8c96f7dc5834af"
tell application "Safari" set theURL to URL of current tab of window 1 set the clipboard to theURL end tell
set shellScript to ("curl --url "https://api-ssl.bitly.com/v4/shorten" --data "access_token=" & bitlyToken & "&format=txt&longUrl=" & theURL & "" ")
El código no está compilando y no puedo averiguar si estoy añadiendo un ShellScript o no estoy implementando el código de la API de bit.ly correctamente.
Gracias