0

I am planning to develop an app for the windows phone.

In this app actually, I need some metadata from youtube for each user, especially the videos they like and their playlists on youtube. But, as I started to google for it, I came across this news that youtube apis are not fully supported on windows phone.

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

So, I wanted to know whether this feature can be implemented in windows phone app or not?

Yash
  • 5,225
  • 4
  • 32
  • 65

2 Answers2

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?

Community
  • 1
  • 1
JustinAngel
  • 16,082
  • 3
  • 44
  • 73
0

You can get the user metadata using YouTube Data API v3.

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

from the documentation:

YouTube also uses playlists to identify special collections of videos for a channel, such as:

  • uploaded videos
  • favorite videos
  • positively rated (liked) videos
  • watch history
  • watch later

The API can be consumed from any client, if you use any JSON library and OAUTH2 authentication.

This project shows how to do it;

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

Matias Molinas
  • 2,246
  • 15
  • 11