我目前正在探索使用 Google 的 YouTube API 从 YouTube 频道中检索观看次数。(Google.Apis.Youtube.v3.dll)。我可以成功检索有关频道中视频的信息,但无法检索实际观看次数。
例子:
foreach (var channel in channelsListResponse.Items)
{
var viewcount = channel.Statistics.ViewCount;
我不断收到“对象引用未设置为对象的实例”错误。
有没有人有使用 YouTube API 检索视图计数的 .net 代码示例,或者知道可能导致此类错误的原因?