Downloading result.json to use data in flow

Welcome to the Make community!

The data is the binary file containing the JSON. You’ll need to use the convert encoding trick to make the binary file into a text file.

I have mentioned this possible workaround for this here: Read text in .txt file stored in google drive - #4 by samliew

You can use a “Convert encoding” module using the same input and output encoding, then you can use the output of this module in your Parse JSON module.

Alternatively, you can simply try using the toString built-in function in the mapped field, something like this:   toString(data)

2 Likes