Twilio SMS主体不会在Azure Logic App中连接URL参数

Hel*_*pha 2 sms android azure twilio azure-logic-apps

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

例如,如果我发送此信息:https://example.com? id = 26我将收到正确的字符串,但该参数未与可点击链接中的域正确连接. 在此输入图像描述

因此,当我单击文本消息中的链接时,它只会打开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]
Run Code Online (Sandbox Code Playgroud)

我已经尝试发送一个简单的字符串,如https://example.com?id=8,看看它是否是失败的"复杂"身体连接,但它仍然无法正常工作.

谁能帮忙:)?

Hel*_*pha 7

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

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

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

在此输入图像描述