Hi,
> 2. The question: in Python Client I saw "text/plain" # "application/json". What does it mean?
"#" starts a comment in python, so that means I first wrote "application/json" and then realized that that was wrong and changed it to "text/plain", but left the old value there in a comment because sometimes I forget to delete old code :)
RFS 4627 -> The MIME media type for JSON text is application/json.
Yes, but this is not application/json, it's JSON as part of an x-www-form-encoded message (JSON value with the key "request-json"). True, I could have made the API so that the POST accepts plain JSON (removing the "request-json=" part) instead of something that looks like an HTML form, and in that case it would be appropriate for it to be application/json. But I thought it was nice for it to look like an HTML form. Maybe I was wrong.
cheers,
--dustin