I'm trying to get some attribute values out of XML, but without success. http://play.golang.org/p/a5IqjbH3DV
Can anyone spot of what I'm doing wrong?
I'm trying to get some attribute values out of XML, but without success. http://play.golang.org/p/a5IqjbH3DV
Can anyone spot of what I'm doing wrong?
The fields should be exported ( start with uppercase )
You did it right for the Entry
but not for the Statistics
struct
See: http://play.golang.org/p/cQRGJag313
type Statistics struct {
TotalUploadViews int `xml:"totalUploadViews,attr"`
SubscriberCount int `xml:"subscriberCount,attr"`
}