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
QueryEmail method applies java.net.URLDecoder.decode to the response. However, the response is a JSON, not an urlencoded string.
In most cases this is a no-op, but sometimes it can fail. For example, if the response JSON contains the following location value: "location":"%"
then response parsing fails with the following exception:
java.lang.IllegalArgumentException: URLDecoder: Illegal hex characters in escape (%) pattern - Error at index 0 in: "","
at java.base/java.net.URLDecoder.decode(URLDecoder.java:237)
at java.base/java.net.URLDecoder.decode(URLDecoder.java:147)
at com.emailage.javawrapper.EmailageClient.QueryEmail(EmailageClient.java:91)
...
The text was updated successfully, but these errors were encountered:
QueryEmail
method appliesjava.net.URLDecoder.decode
to the response. However, the response is a JSON, not an urlencoded string.In most cases this is a no-op, but sometimes it can fail. For example, if the response JSON contains the following location value:
"location":"%"
then response parsing fails with the following exception:
The text was updated successfully, but these errors were encountered: