Twilio SMS主体不会在Azure Logic App

时间:2017-07-11 14:14:40

标签: android azure sms twilio azure-logic-apps

我目前正在Azure中构建一个逻辑应用程序,以便使用Twilio发送短信。除了我不能在身体中发送复杂的URL之外,一切都在顺利进行。

例如,如果我发送此信息:https://example.com?id=26我将收到正确的字符串,但该参数未与可点击链接中的域正确连接。 enter image description here

因此,当我点击短信中的链接时,它只会打开https://example.com。我发送的邮件是这样构建的:

 "Send_Text_Message_(SMS)": {
            "inputs": {
                "body": {
                    "body": "@{triggerBody()?['message']}@{triggerBody()?['url']}@{body('Insert_row')?['Id']}",
                    "from": "xxx-xxx-xxxx",
                    "to": "@triggerBody()?['phone']"
                },

message: Hello please click this link
url :https://example.com?id=
id: 26
so the final body would be like : [message][url][id]

我尝试发送一个简单的字符串,如https://example.com?id=8,看看它是否是"复杂的"身体连接失败,但它仍然不起作用。

任何人都可以帮忙:)?

1 个答案:

答案 0 :(得分:6)

对于那些会被困在这里的人来说,我是如何欺骗android的:

我在.com之后添加了一个/所以现在发送的网址是:

https://example.com/?id=36

enter image description here