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
As it is written in the README for the escape characters:
It is possible to enable use of an "escape character" (by default, not enabled): some variations use \ for escaping. If enabled, character immediately followed will be used as-is, except for a small set of "well-known" escapes (\n, \r, \t, \0)
In this list it's not included \N that is currently used by Facebook Export API.
As you can image, I go through this exception:
Exception in thread "main" com.fasterxml.jackson.databind.RuntimeJsonMappingException: Can not construct instance of java.lang.Double from String value ("N"): not a valid Double value
Because the parser remove the escape character \ from the null value.
Can you include the \N value in the list of the exceptions? Thank you!
The text was updated successfully, but these errors were encountered:
As it is written in the README for the escape characters:
In this list it's not included \N that is currently used by Facebook Export API.
As you can image, I go through this exception:
Because the parser remove the escape character \ from the null value.
Can you include the \N value in the list of the exceptions? Thank you!
The text was updated successfully, but these errors were encountered: