You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
create table bitly.shorten
on insert get from "http://api.bitly.com/v3/shorten?login={^login}&apiKey={^apikey}&longUrl={^longUrl}&format={format}"
using defaults apikey = "{config.bitly.apikey}", login = "{config.bitly.login}", format = "json"
using patch 'bitly.js'
resultset 'data.url'
on select get from "http://api.bitly.com/v3/expand?login={^login}&apiKey={^apikey}&shortUrl={^shortUrl}&format={format}"
using defaults apikey = "{config.bitly.apikey}", login = "{config.bitly.login}", format = "json"
using patch 'bitly.js'
resultset 'data.expand'
This should fail as bitly.js is not found. An error comes up and disappears immediately.
The text was updated successfully, but these errors were encountered:
Try this script int he console
This should fail as bitly.js is not found. An error comes up and disappears immediately.
The text was updated successfully, but these errors were encountered: