Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
go version
go version go1.10 darwin/amd64
Parsing a json with a comma in the value will fail if the target variable is []byte and not string: https://play.golang.org/p/5dDCW9mwDv8
Unmarshalled json object
Error: illegal base64 data at input byte 4
The text was updated successfully, but these errors were encountered:
Or is this behavior intended?
Sorry, something went wrong.
It is intended.
Explanation for others looking at this: if target field is of type []byte json library expects data to be base64 encoded. It data is not base64 encoded use a field of type string as target on unmarshalling.
[]byte
string
No branches or pull requests
What version of Go are you using (
go version
)?go version go1.10 darwin/amd64
What did you do?
Parsing a json with a comma in the value will fail if the target variable is []byte and not string:
https://play.golang.org/p/5dDCW9mwDv8
What did you expect to see?
Unmarshalled json object
What did you see instead?
Error:
illegal base64 data at input byte 4
The text was updated successfully, but these errors were encountered: