Giter VIP home page Giter VIP logo

Comments (5)

Hajto avatar Hajto commented on August 14, 2024

Passing it through String.normalize(&1, :nfkd) helps.

from jason.

Hajto avatar Hajto commented on August 14, 2024

I would really love to understand the reasoning behind this error. It is really curious.

from jason.

ludwikbukowski avatar ludwikbukowski commented on August 14, 2024

have similar issue @Hajto

from jason.

voughtdq avatar voughtdq commented on August 14, 2024

You have a nonbreaking space:

iex> that_string = "{\n  \"name\": \"Elegant Ocean Racers #4970\",\n  \"description\": \"Elegant Ocean Racers are a collection of 5005 elephant & sea creature combinations, inhabiting the Polygon blockchain. Your Elegant Ocean Racer grants you access to the Elegant Ocean Race League.\",\n  \"image\": \"ipfs://QmRhriyxYQVmm4pUFp3WaFwNn99hz15x5SoLWVR5aXUDee/4970.png\",\n  \"dna\": \"77630fb67bbee3bcbe54fdb4d8e0cc3a155fada9\",\n  \"edition\": 4970,\n  \"date\": 1653213448373,\n  \"artist\": \"Tosh\",\n  \"attributes\": [\n    {\n      \"trait_type\": \"Background\",\n      \"value\": \"Gold\"\n    },\n    {\n      \"trait_type\": \"Creature\",\n      \"value\": \"EOR Phantom\"\n    },\n    {\n      \"trait_type\": \"Phant Skin\",\n      \"value\": \"Gold\"\n    },\n    {\n      \"trait_type\": \"Eye Accessory\",\n      \"value\": \"Sun Shades (Gold)\"\n    },\n    {\n      \"trait_type\": \"Headwear\",\n      \"value\": \"Bowler\"\n    },\n    {\n      \"trait_type\": \"Mouth Accessory\",\n      \"value\": \"Smile\"\n    },\n    {\n      \"trait_type\": \"Tusk\",\n      \"value\": \"Gold\"\n    },\n    {\n      \"trait_type\": \"Accessory 2\",\n      \"value\": \"None\"\n    },\n    {\n      \"trait_type\": \"Accessory 1\",\n      \"value\": \"Anchor (Gold)\"\n    },\n    {\n      \"trait_type\": \"Tier\",\n      \"value\": \"Legendary\"\n    }\n  ],\n  \"compiler\": \"HashLips Art Engine\"\n}"
iex> String.to_charlist(that_string)
[123, 10, 160, ...] 

Char [160] is not valid per the JSON spec. Replace it with a valid whitespace character - one of [9, 10, 13, 32].

If you replace the character, it works:

iex> Jason.decode(String.replace(that_string, <<160>>, " "))
{:ok,
 %{
   "artist" => "Tosh",
...}}

However, you introduce a new problem, which is that within your JSON values, there could also be a <<160>> somewhere. So some modification to whatever is producing that JSON would be the best solution.

@michalmuskala this can probably be closed, right? It doesn't seem like an issue with Jason itself, but with whatever is producing the malformed JSON.

from jason.

michalmuskala avatar michalmuskala commented on August 14, 2024

Ah, great catch. Yes, I'm going to close this. Jason only parses valid JSON as per the spec.

from jason.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.