0

我尝试重复一些 YouTube java API 请求以收集 userprofileentry (ies) 以获取评论,并注意到年龄和性别现在对除位置之外的所有用户返回 null。抱歉,如果已经回答了这个问题,如果有人可以重定向我,我将不胜感激。

这是我使用 YouTubeService 初始化的代码,使用 devKey 和 ID ans 几个月前工作正常(即使发生了一些更改,例如删除了视频标签)。

UserProfileEntry userProfileEntry = YouTubeService.getEntry(new URL("http://gdata.youtube.com/feeds/api/users/" + UserID), UserProfileEntry.class);

System.out.print("  "+userProfileEntry.getAge());
System.out.print("  "+userProfileEntry.getGender());
System.out.print("  "+userProfileEntry.getLocation());
4

1 回答 1

2

该信息最近已从 YouTube 网络界面的频道页面中删除,然后从数据 API 响应中删除。

于 2013-01-02T22:09:28.893 回答