nP1W92GcR86R8BPy97S+2US8yNTBbWqfuhHBn1GChUqg9ZIMELlwmCgk6epAT0kyTkpIBhlr9IH4fSEQqxvnKn6lgnu/0BNyXg3v1iOxxYO0lZL8AW0KVSNPaRyv+Tt+J8liG/GfNOgxSYePE0kRuLP2nTjjSaNhPozzDGwKPtm3p5ouldGdzCfwPeGEJPSz0dSh9aNzdq5a3V/rd+Aqb4wkixWMPhW/z+JeoyofxhHSETi28/3FerNRHx/GBQBx0cEn+44Ej/...
The proposed method I've been working towards is converting the data to a data URI. So for a image/jpeg it will be data:image/jpeg;base64,<base64encodedImage>. This seems like a robust way to represent any byte stream of a resource in JSON. Does anyone see any problems with this ap...