Solved
bityl url shortner to shorten url
Hi All,
i need code to do url shortning to send one of the sms campaign
Please help me how can i shorten that url
bityl url shortner to shorten url
please provide code/url ---how can we achieve that
@322232
Hi All,
i need code to do url shortning to send one of the sms campaign
Please help me how can i shorten that url
bityl url shortner to shorten url
please provide code/url ---how can we achieve that
@322232
Hello @jefrii
You can use this code to call bitly API
var req = new HttpClientRequest("https://api-ssl.bitly.com/v4/shorten")
req.header["Authorization"] = "Bearer TOKEN_HERE" ;
req.header["Content-Type"] = "application/json";
req.method = "POST";
req.body = '{ "group_guid": "GROUP_UUID_HERE","domain": "bit.ly","long_url": "LONG_URL_HERE"}' ;
try {
req.execute()
var response = req.response;
var res=JSON.parse(response.body);
return res.link;
}
catch(e)
{
return "unable to exceute api";
}
req.disconnect()
this is just a sample code to get you started
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.