我正在尝试将额外的查询参数传递给 Azure 逻辑应用程序,以便我可以处理逻辑应用程序工作流中的以下数据
例如https://logicURL?SelectedData= "%7BsiteURL%3AXYZ.sharepoint.com%2Fsites%2FXYZDev%7D"(编码字符串)
在 HTTP 操作中,我尝试使用以下 JSON 模式处理以上传递的数据
{
"kind": "Http",
"inputs": {
"schema": {
"properties": {
"selectedData": {
"type": "string"
}
},
"type": "object"
}
} }
Run Code Online (Sandbox Code Playgroud)
我没有得到 selectedData 值。我需要使用 decodecomponentURI 然后使用 JSON 值。
在这里找到错误