我有一个带有Input和Archive目录的Azure存储帐户。我要:
在“导入”文件夹中检查新的XML文件。 读取任何文件的内容并验证数据。 重命名XML文件并将其移到“存档”文件夹。
我不想设置网关,因为我需要检查它的安全性。因此,我设置了一个重复触发来轮询目录。到目前为止,这是我的逻辑应用程序。
这是我得到的输出。
这是完整的错误消息。
```{
"status": 400,
"message": "The specified resource name length is not within the permissible
limits.\r\nclientRequestId: f7ed6db1-6ee4-43a3-bd3a-796162f3a58c",
"error": {
"message": "The specified resource name length is not within the permissible limits."
},
"source": "azureblob-ne.azconn-ne-01.p.azurewebsites.net"
}
```
答案 0 :(得分:0)
检查blob connector reference会发现问题,“获取blob内容”操作会询问blob id,然后传递整个blob属性json,这就是显示错误的原因。
正确的方法是选择斑点ID,实际上斑点路径是可以接受的。您可以参考我的流程。