尝试在 Twilio SMS 中创建短 link
Trying to create short link in Twilio SMS
我有一个向客户发送 SMS 的出站应用程序。
在每条短信中,link 指向他们点击的网页。
每个 link 对每个客户来说都是独一无二的,这样我就可以识别他们是谁。
我知道周围有一些简短的 link 工具,但我需要为每个客户提供一个独特的 link。
Twilio 对此有好的解决方案吗?或者我需要在每条短信中插入一个长URL
这里是 Twilio 开发人员布道者。
Twilio 没有用于普通短信的内置 URL 缩短器(尽管这是一个选项 when sending MMS messages)。
我建议使用 URL 缩写 API,例如 Bitly API. You can make a request to shorten your URL, then use the result when sending the SMS with the Twilio API。
我有一个向客户发送 SMS 的出站应用程序。
在每条短信中,link 指向他们点击的网页。
每个 link 对每个客户来说都是独一无二的,这样我就可以识别他们是谁。
我知道周围有一些简短的 link 工具,但我需要为每个客户提供一个独特的 link。
Twilio 对此有好的解决方案吗?或者我需要在每条短信中插入一个长URL
这里是 Twilio 开发人员布道者。
Twilio 没有用于普通短信的内置 URL 缩短器(尽管这是一个选项 when sending MMS messages)。
我建议使用 URL 缩写 API,例如 Bitly API. You can make a request to shorten your URL, then use the result when sending the SMS with the Twilio API。