Golang : [json: cannot unmarshal object into Go value of type]
Un-marshalling JSON data from external sources can be challenging sometimes. Encountered this error message while working on the previous tutorial to display list of countries and the ISO2 codes.
json: cannot unmarshal object into Go value of type
Apparently, it was because the JSON data given by country.io has no fields identifiers. Only iso codes follow by country names. For instance :
{"BD": "Bangladesh", "BE": "Belgium" }
To deal(un-marshal) with this kind of data. First, we need to define a map expecting string and with the help of interface{}
For example,
resp, err := http.Get("http://country.io/names.json")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
defer resp.Body.Close()
jsonCountriesData, err := ioutil.ReadAll(resp.Body)
if err != nil {
fmt.Println(err)
os.Exit(1)
}
countriesMap := make(map[string]interface{})
// Decode JSON into our map
err = json.Unmarshal([]byte(jsonCountriesData), &countriesMap)
if err != nil {
println(err)
return
}
See for full source code example at : https://www.socketloop.com/tutorials/golang-display-list-of-countries-and-iso-codes
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+10.1k Android Studio : Simple input textbox and intercept key example
+7.3k Golang : Shuffle strings array
+11.2k Swift : Convert (cast) Float to String
+5.5k Javascript : How to replace HTML inside <div>?
+8.7k Golang : How to capture return values from goroutines?
+19.6k Golang : Determine if directory is empty with os.File.Readdir() function
+13k Golang : Linear algebra and matrix calculation example
+27.1k Golang : Convert integer to binary, octal, hexadecimal and back to integer
+5.3k Golang : Detect words using using consecutive letters in a given string
+9.4k Golang : Find correlation coefficient example
+13.1k Golang : Read from buffered reader until specific number of bytes
+14.8k Golang : How to check if IP address is in range