我目前正在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]
我尝试发送一个简单的字符串,如https://example.com?id=8,看看它是否是"复杂的"身体连接失败,但它仍然不起作用。
任何人都可以帮忙:)?
答案 0 :(得分:6)