如何在 powerapps 中 post 图像到 Azure 存储?

How to post images to Azure storage in powerapps?

我在 Powerapps 中有一组图像,我想将它们发送到 Azure 存储,以便我可以在 Azure 函数中访问它们。

我曾尝试使用 Create block blob 在 PowerApps 中创建工作流,但我无法在其中使用动态内容。

那么我如何才能将集合中的所有图像发送到 Azure 存储?

我正在这样做,所以我可以在函数中访问这些图像。如果有其他方法,我也可以试试。我只需要在 Azure 函数中访问它们。

有一个与您正在寻找的类似的解决方案,您必须:

1- Create a custom API to route your images from the source you get them from (Example on article bellow is from camera to Blob)
2- Test your API locally in Azure Emulator
3- Publish API to Azure
4- Register the Custom API in PowerApps:https://docs.microsoft.com/en-us/powerapps/register-custom-api

可在此处找到完整的分步指南:https://powerapps.microsoft.com/en-us/blog/custom-api-for-image-upload/ 如果这对 Alan 有帮助,请告诉我。