Azure logic apps SFTP Copy File action breaks with some SAS Urls

孤者浪人 提交于 2019-12-04 19:03:56

This bug has been fixed in SFTP connector. To make it work, please create a new logic app with appropriate actions.

The SFTP connector has a bug which causes it to fail if a SAS Url has a plus sign (%2B) in the signature, presumably due to how the connector code handles the URL when it tries to GET the blob by Url. The fix is to double-encode the plus sign:

"source": "@{replace(body('Create_SAS_URI_by_path')?['WebUrl'], '%2B', '%252B')}"

I'd report this to Microsoft, but can't find the Github repo for the connector. Hope this helps someone else in the future.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!