JSON can only contain ascii (or unicode at best), but can't send raw bytes. You can use the base64-encoded "data" field or the unicode-encoded "data_plain", but you'll have to decode it into bytes if it's raw bytes.
↧
JSON can only contain ascii (or unicode at best), but can't send raw bytes. You can use the base64-encoded "data" field or the unicode-encoded "data_plain", but you'll have to decode it into bytes if it's raw bytes.