-
Notifications
You must be signed in to change notification settings - Fork 440
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
feat: Enable json request body #749
Conversation
@@ -18,7 +18,7 @@ public class Converter { | |||
* @param map map to convert | |||
* @return converted JSON string | |||
*/ | |||
public static String mapToJson(final Map<String, Object> map) { | |||
public static String mapToJson(final Map<String, ? extends Object> map) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This line of code is added to support all object serialization which has a value of type Object or any object.
for (String value : entry.getValue()) { | ||
builder.addParameter(entry.getKey(), value); | ||
// TODO: It will be removed after one RC Release. | ||
if (request.getContentType() == null) request.setContentType(Enum.ContentType.FORM_URLENCODED); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
java code does not have content type set. It will throw Null pointer exception on test. This line of code will be removed after one RC release.
Fixes
Adding support for handling json request body.
Checklist
If you have questions, please file a support ticket, or create a GitHub Issue in this repository.