When i am trying to upload files into azure blob storage i keep getting this error and when tried on a different PC it works fine.
i have cleared cookies and tried different browser but still the same error.
I know its not an error in the code cause it works fine on other PC.
any solution to this?
Hello,
Can you please provide more details around how you are uploading files to Block Storage and how you have designed your power app?
The other machine where it works, is connected to VPN or is your personal computer?
@rohsh354 Thanks for the reply
Both PCs are not connected to VPN and below is the code im using
Set(varazurefile, AzureBlobStorage.CreateFile("reqdocs", TextInput1_1.Text, AddMediaButton2_1.Media));
Set(iid, Value(Last('[dbo].[docs]').image_id)+1);
Patch('[dbo].[docs]', Defaults('[dbo].[docs]'),
{Case_ID: Value(Label44.Text),
image_id:iid,
file_link:"https://XXXX.blob.core.windows.net" & varazurefile.Path,
file_name: TextInput1_1.Text,
fileid: varazurefile.Id,
type: Dropdown1.Selected.Value});
Collect(requireddocs, {Case_ID:Value(Label44.Text), File_Name: TextInput1_1.Text, File_link: "https://XXXX.blob.core.windows.net" & varazurefile.Path,
File_Type: Dropdown1.Selected.Value});
Reset(AddMediaButton2_1);
Reset(TextInput1_1);
Navigate(uploads, ScreenTransition.Fade);
User | Count |
---|---|
236 | |
113 | |
94 | |
59 | |
31 |
User | Count |
---|---|
286 | |
132 | |
104 | |
62 | |
57 |