Java RestTemplate 请求参数字符串中有大括号{}的请求正确方法
2021-06-05 00:02
标签:string method 请求 and ons inf cat ati push 1 前言 腾讯IM发送离线消息,总是会提示参数中json数据不正确的错误,然而内容json格式是正确。原因是RestTemplate请求get,post的方法没使用正确导致。此文章记录一下。 2 代码 3 小结 实践出真理 Java RestTemplate 请求参数字符串中有大括号{}的请求正确方法 标签:string method 请求 and ons inf cat ati push 原文地址:https://www.cnblogs.com/fanbi/p/14640474.html //参数中字符串中没有含有{}
//样例:{"MsgRandom":407056434,"SyncOtherMachine":2,"MsgLifeTime":2592000,"OfflinePushInfo":{"Ext":"ext内容","Desc":"测试样例2021-04-10"}
public static JSONObject post(String url, JSONObject postData) {
LogUtils.print("info", "url", postData);
JSONObject json = restTemplate.postForEntity(url, postData, JSONObject.class).getBody();
return json;
}
public static String get(String url) {
ResponseEntity
上一篇:冒泡排序-python
下一篇:java 数据类型:集合接口Collection之List~ArrayList:remove移除;replaceAll改变原有值;sort排序;迭代器listIterator();
文章标题:Java RestTemplate 请求参数字符串中有大括号{}的请求正确方法
文章链接:http://soscw.com/index.php/essay/90619.html