Hi Guys,
I am struggeling with an issue which is took me a lot of time. I want to upload pictures from my phone to PowerApps and then upload it to Sharepoint. As you can see I am using Add picture function in PowerApps. and then I want through a flow upload the uploaded photo to sharepoint. This flow works perfctley when I take a picture from PowerApps camera. But when I use this for uploaded photo it does not work. In PowerApps I dont get any error but when I look to flow then I get this error.:
InvalidTemplate. Unable to process template language expressions in action 'Create_file' inputs at line '1' and column '2076': 'The template language function 'dataUriToBinary' expects its parameter to be formatted as a valid data URI. The provided value 'appres://blobmanager/44d89ffa59234887b2510e2b4030f1ed/3' was not formatted correctly. Please see https://aka.ms/logicexpressions#dataUriToBinary for usage details.'.
The flow code that does not works:
test7.Run(GUID()& ".jpg",UploadedImage1.Image,1)
The flow code that does works:
test7.Run(GUID()& ".jpg",takenpicset6,Label5_1);

Thank you!