Youtube v3 api使用code.google.com/p/google-api-go-client/youtube/v3

时间:2015-02-10 02:20:50

标签: go youtube-api

尝试从我的频道中获取上传列表但我收到错误" ChannelContentDetails没有字段或方法上传"

apiCall := youtube.Channels.List("contentDetails").Mine(true)
response, err := apiCall.Do()
if err != nil {
log.Fatalf("Error making API call: %v", err.Error())
}
fmt.Println(response.Items[0].ContentDetails.uploads)

1 个答案:

答案 0 :(得分:1)

response.Items[0].ContentDetails.RelatedPlaylists.Uploads

应该有用。