diff --git a/src/http/requests/PostRequest.java b/src/http/requests/PostRequest.java index ce23198..2d773d0 100644 --- a/src/http/requests/PostRequest.java +++ b/src/http/requests/PostRequest.java @@ -71,7 +71,7 @@ public void addData(String key, String value) public void addData(String json) { try{ - stringEntity = new StringEntity(json); + stringEntity = new StringEntity(json, encoding); } catch( Exception e ) { e.printStackTrace(); }