0

我打算为windows phone 开发一个应用程序。

实际上,在这个应用程序中,我需要为每个用户提供一些来自 youtube 的元数据,尤其是他们喜欢的视频和他们在 youtube 上的播放列表。但是,当我开始搜索它时,我发现了这个消息,即 Windows Phone 不完全支持 youtube api。

http://www.infoworld.com/t/windows-phone/in-blocking-windows-phone-access-youtube-google-delivers-rough-justice-210116

所以,我想知道这个功能是否可以在windows phone 应用程序中实现?

4

2 回答 2

0

GData APIs work just fine on WP7/WP8 AFAIK. IANAL but it works fine and I haven't seen any official disclaimer saying it won't/shouldn't work. I believe this article has more to do about streaming video APIs then GData APIs.

You can see a sample of those APIs and how to use them in the official docs and in this previous answer of mine @ Possible to play Youtube video in a wp7 app?

于 2013-01-08T23:44:10.293 回答
0

您可以使用 YouTube Data API v3 获取用户元数据。

https://developers.google.com/youtube/v3/docs/playlists

从文档中:

YouTube 还使用播放列表来识别频道的特殊视频集合,例如:

  • 上传的视频
  • 最喜欢的视频
  • 积极评价(喜欢)的视频
  • 观看历史
  • 稍后观看

如果您使用任何 JSON 库和 OAUTH2 身份验证,则可以从任何客户端使用 API。

这个项目展示了如何做到这一点;

https://yt-topic-explorer.googlecode.com/git/dist/index.html

于 2013-01-08T23:59:10.993 回答