-
Notifications
You must be signed in to change notification settings - Fork 9.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Encoding object has style and contentType #1551
Comments
I am also running into this question; is there any resolution? |
Also running into the same |
OK, digging through this more, it was actually fixed in 3.1.0 with the following new text added to
So that at least explains how to override Since This is going to take more investigation and thought to fully unravel. |
@OAI/tsc review request: It's unclear how to clarify 3.0.4 here. Even 3.1.1 is a bit murky, but the only thing I can think of for 3.0.4 is to more-or-less backport the 3.1.1 behavior. Or maybe deem the area implementation-defined (where implementations can choose which of two options to support) while making the 3.1.1-compatible behavior RECOMMENDED? |
We can only recommend the 3.1.1 behavior in a patch version, so let's do that. |
After a great deal of GitHub archaeology, I've determined that the intent was for |
PR merged for 3.0.4 and ported to 3.1.1 via PR #3921! |
Let's say I have:
Since encoding has both a
contentType
and astyle
, what do I do with theaddress
property? Do I decode it as an exploded form object? Do I extract the value of 'address' from the message body and run it throughJSON.parse()
? Do I decode it as an exploded form, but run the value of each key throughJSON.parse()
?Or does contentType here only apply to
multipart
bodies?The text was updated successfully, but these errors were encountered: