You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've just found out that at least Flask handler in python/fastrpc/handler/flask.py - probably the other two are affected too - doesn't support base64-encoded data (Content-Type :application/x-base64-frpc).
IMHO it should
detect encoded data from header
automatically decode it
encode output to base64
reply with corect ContentType header
The text was updated successfully, but these errors were encountered:
Ideally, the output encoding shall be driven by the Accept request header (as opposed to Content-Type. A client implementation can, in theory, send base64 but accept binary.
I've just found out that at least Flask handler in python/fastrpc/handler/flask.py - probably the other two are affected too - doesn't support base64-encoded data (
Content-Type
:application/x-base64-frpc
).IMHO it should
ContentType
headerThe text was updated successfully, but these errors were encountered: