Hi ,
I’m using http request package for uploading files to azure blob storage (It’s client requirement),
May I know how can I add binary data in put request which is the content of the file which I want to upload in blob storage ?
If my understanding is correct, you need to convert the input file to Bytes and upload it.
- Declare a variable as bytes As Byte() datatype.
- Use Assign activity with the bytes in the left side and File.ReadAllBytes(“path”) in the right side
- And in another assign activity you can use string variable with left side and Convert.ToBase64String(bytes) in the right side