|
|
@@ -28,7 +28,7 @@ public class SendUtil {
|
|
|
*/
|
|
|
public static boolean sendToB2B(String url, String data, String accessSecretKey) throws Exception {
|
|
|
Map<String, String> params = new HashMap<String, String>();
|
|
|
- params.put("data", JsonUtils.toJsonString(data));
|
|
|
+ params.put("data", data);
|
|
|
LOGGER.info("url={}, accessSecretKey={}", url, accessSecretKey);
|
|
|
LOGGER.info("data={}", data);
|
|
|
Response response = HttpUtil.sendPostRequest(url, params, true, accessSecretKey);
|