英文:
YouTube v3 api using code.google.com/p/google-api-go-client/youtube/v3
问题
尝试从我的频道获取上传列表,但是出现错误“ChannelContentDetails没有字段或方法Uploads”。
apiCall := youtube.Channels.List("contentDetails").Mine(true)
response, err := apiCall.Do()
if err != nil {
log.Fatalf("发生API调用错误:%v", err.Error())
}
fmt.Println(response.Items[0].ContentDetails.uploads)
英文:
Trying to grab a list of uploads from my channel but I get the error "ChannelContentDetails has no field or method Uploads"
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
得分: 1
<!-- language: go -->
response.Items[0].ContentDetails.RelatedPlaylists.Uploads
应该可以工作。
英文:
<!-- language: go -->
response.Items[0].ContentDetails.RelatedPlaylists.Uploads
should work.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论