change struct type
This commit is contained in:
parent
fd11449a05
commit
31e4eee841
@ -51,7 +51,7 @@ func getHeaders(token ...interface{}) map[string]string {
|
|||||||
// ChannelItem -
|
// ChannelItem -
|
||||||
type ChannelItem struct {
|
type ChannelItem struct {
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
Sinppet ChannelSinppet `json:"sinppet"`
|
Sinppet *ChannelSinppet `json:"sinppet"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ChannelSinppet -
|
// ChannelSinppet -
|
||||||
@ -98,12 +98,13 @@ func QueryYoutubeName(id string) (n string, err error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bodyBytes, err := ioutil.ReadAll(resp.Body)
|
bodyBytes, err := ioutil.ReadAll(resp.Body)
|
||||||
|
fmt.Println("body ::: ", bodyBytes)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
|
|
||||||
apiRes := struct {
|
apiRes := struct {
|
||||||
Items []ChannelItem `json:"items"`
|
Items []*ChannelItem `json:"items"`
|
||||||
}{}
|
}{}
|
||||||
|
|
||||||
err = json.Unmarshal(bodyBytes, &apiRes)
|
err = json.Unmarshal(bodyBytes, &apiRes)
|
||||||
|
Loading…
Reference in New Issue
Block a user