¿Cómo consigo que la respuesta de la API de SMS Shortlink sea un enlace y no una carga útil?
Estoy usando el siguiente código (solo usando el enlace de intercambio de pila, por ejemplo):
%%[
var @Id, @shortenUrl, @cuttlyUrl, @link, @linkName
set @startDate = "2021-01-01 6:45 AM"
set @endDate = Now(1)
set @numOne = 100000
set @numTwo = 99999
set @randNum = random(@numOne,@numTwo)
set @time = dateDiff(@startDate, @endDate, "MI")
set @linkName = concat('repko-testing-',@time,@randNum)
set @link = 'https://salesforce.stackexchange.com/questions/122185/ampscript-in-sms-how-to-use-dynamic-content-in-sms-with-ampscript-mobileconne'
set @cuttlyUrl = Concat('https://cutt.ly/api/api.php?key=[key]&short=',@link,'&name=',@linkName,'&format=txt')
set @shortenUrl = HTTPGet(@cuttlyUrl)
]%%
Todo está funcionando, pero estoy recibiendo una respuesta de éxito como la siguiente:
{"url":{"status":7,"fullLink":"https:\/\/salesforce.stackexchange.com\/questions\/122185\/ampscript-in-sms-how-to-use-dynamic-content-in-sms-with-ampscript-mobileconne","date":"2021-01-06","shortLink":"https:\/\/cutt.ly\/repko-testing-741599999","title":"marketing cloud - AMPScript in SMS - How to use dynamic content in SMS with AMPScript? MobileConnect - Salesforce Stack Exchange"}}
Lo cual es genial para saber que configuré mi ampscript correctamente, pero no quiero que el usuario vea esto. Solo busco el enlace. Así que solo busco que sea así:https://cutt.ly/repko-testing-741599999
Siento que hay una solución simple, pero esta es la primera vez que hago esto, así que no estoy seguro de cuál es el siguiente paso ahora.
Respuestas
2 JasonHanshaw
Debe analizar la respuesta JSON y seleccionar el valor que desea completar. Puede hacer esto con bastante facilidad con SSJS:
<script runat="server">
Platform.Load("Core", "1");
/* GET HTTPGET RESPONSE */
var jsonResp = Platform.Function.ParseJSON(Platform.Variable.GetValue("@shortenUrl"));
/* GET SHORT LINK VALUE FROM RESPONSE */
var shortLink = jsonResp.url.shortLink;
/* OUTPUT VALUE OR ASSIGN TO AMPSCRIPT VARIABLE*/
Write(shortLink);
Platform.Variable.SetValue("@shortLink",shortLink);
</script>