You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please change LiqPay.java:116 String data = base64_encode(JSONObject.toJSONString(withSandboxParam(withBasicApiParams(params))));
to this (or provide some control over encoding) String data = base64_encode(JSONObject.toJSONString(withSandboxParam(withBasicApiParams(params))).getBytes("UTF-8"));
The text was updated successfully, but these errors were encountered:
Please change LiqPay.java:116
String data = base64_encode(JSONObject.toJSONString(withSandboxParam(withBasicApiParams(params))));
to this (or provide some control over encoding)
String data = base64_encode(JSONObject.toJSONString(withSandboxParam(withBasicApiParams(params))).getBytes("UTF-8"));
The text was updated successfully, but these errors were encountered: