Como faço para que a resposta da API do SMS Shortlink seja um link e não uma carga útil?

Jan 07 2021

Estou usando o código abaixo (apenas usando o link de troca de pilha, por exemplo):

%%[ 
    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)
    ]%%

Tudo está funcionando, mas estou recebendo uma resposta de sucesso como a seguir:

{"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"}}

O que é ótimo para saber que configurei meu ampscript corretamente, mas não quero que o usuário veja isso. Estou apenas procurando o link. Então, estou apenas procurando que seja assim:https://cutt.ly/repko-testing-741599999

Acho que existe uma solução simples, mas esta é a primeira vez que faço isso, então não tenho certeza de qual é o próximo passo agora.

Respostas

2 JasonHanshaw Jan 07 2021 at 00:38

Você precisa analisar a resposta JSON e selecionar o valor que deseja preencher. Você pode fazer isso facilmente com 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>