尝试从我的频道中获取上传列表但我收到错误" 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)
答案 0 :(得分:1)
response.Items[0].ContentDetails.RelatedPlaylists.Uploads
应该有用。