Created
October 26, 2018 19:02
-
-
Save m00zi/e6f5220c9ded3635c5bff26927d89198 to your computer and use it in GitHub Desktop.
An example of a JSON Unmarshal into a Go struct.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
) | |
type Artist struct { | |
Id int | |
Name string | |
Resource_url string | |
Releases_url string | |
Uri string | |
Realname string | |
Profile string | |
Data_quality string | |
Namevariations []string | |
Aliases []struct { | |
Id int | |
Name string | |
Resource_url string | |
} | |
Urls []string | |
Images []struct { | |
Type string | |
Width int | |
Height int | |
Uri string | |
Uri150 string | |
Resource_url string | |
} | |
} | |
func main() { | |
//Query an artist. | |
res, _ := http.Get("http://api.discogs.com/artists/1373") | |
temp, _ := ioutil.ReadAll(res.Body) | |
var artist Artist | |
err := json.Unmarshal(temp, &artist) | |
if err != nil { | |
fmt.Println("There was an error:", err) | |
} | |
fmt.Println(artist.Name) | |
// fmt.Println(artist.Profile) | |
// fmt.Println(artist.Releases_url) | |
// fmt.Println(artist.Namevariations) | |
fmt.Println(artist.Images[1].Height) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment