Unmarshal json error even a matching data structure is provided
问题 I'm starting out with Google go language, and I'm trying to write a simple program to obtain a Json object from Facebook's graph API and unmarshal it. According to the documentation, http://golang.org/doc/articles/json_and_go.html, I should provide a matching data structure, for example if the json object is: { Name: "Alice" Body: "Hello", Time: 1294706395881547000, } The data structure will look like this: type Message struct { Name string Body string Time int64 } In my case, my json look