How do I use a binary buffer tag?

31 Views Asked by At

I have a program that simply signs into my dropbox account and uses .filesdownload which returns a file binary that looks like this:

content_hash: '1f52337b503d8baed7c11cabecd526d33ba80adadeae2767aff133624cbf53aa', fileBinary: <Buffer 7b 22 3c 40 32 34 39 36 30 38 36 33 32 39 33 35 36 34 35 31 38 36 3e 22 3a 20 5b 7b 22 72 69 63 68 61 72 64 63 68 31 65 65 73 65 22 3a 20 22 5f 7c 57 ... 223685 more bytes> }

My goal is to get it downloaded as the text file it should be, or if the program could read it without downloading that would be cool too.

I just need someone to explain what is going on and how can I convert this binary buffer tag into some kind of readable / downloaded form?

0

There are 0 best solutions below