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
Line 83 of Connection.java lacks text encoding for the constructor of StringEntity.
Multi-byte characters are not supported due to this problem.
It may need to specify an encoding, for example,
StringEntity input = new StringEntity(data, "UTF-8");
Line 83 of Connection.java lacks text encoding for the constructor of StringEntity.
Multi-byte characters are not supported due to this problem.
It may need to specify an encoding, for example,
StringEntity input = new StringEntity(data, "UTF-8");