I'm trying to upload an mp3 file to s3. I have the Upload data
field set to {{ atob(data) }}
in order to covert it from base64 string to binary. See below.
However, I get the following error when doing this:
Error evaluating uploadRecording: Cannot read properties of undefined (reading 'file')
If I omit the atob()
function call it uploads to s3 as text. How can I upload binary files in Retool Workflows?