Below you will find pages that utilize the taxonomy term “Json”
Posts
JSON Parsing With Golang
Challenge: When using Go, we can’t be quite as “loosey-goosey” with parsing JSON compared to using Ruby or JS. The challenge/lesson I am trying to solve/learn is how to parse API responses that arent always straight forward or a 1:1 mapping to a given data struct in go. By leveraging json.RawMessage in our code, we have a tool at our disposal to make this scenario much easier to deal with.