So for file loading, using the following works nicely, for images or other binary content
"media": {
"binaryEncoding": "base64"
},
But what if my files are text based? My application is uploading files that are in xml format, and i cant seem to find a way that works where the content is sent as the text that it is, it only gets sent as a base64 encoded string. I tried switching base64 to binary or quoted-printable from here, i even tried removing the media node entirely but only a string of the file path is sent.
So for file loading, using the following works nicely, for images or other binary content
But what if my files are text based? My application is uploading files that are in xml format, and i cant seem to find a way that works where the content is sent as the text that it is, it only gets sent as a base64 encoded string. I tried switching
base64tobinaryorquoted-printablefrom here, i even tried removing themedianode entirely but only a string of the file path is sent.