Получить плейлист пользователя с помощью API YouTube - PullRequest
0 голосов
/ 19 декабря 2011

В данный момент у меня есть этот код, который аутентифицирует пользователя и пытается получить текущий плейлист аутентифицированных пользователей, но запрос отклонен и ошибка такова

Ошибка выполнения запроса:
http://gdata.youtube.com/feeds/api/users/xx_xxx_x@hotmail.com/playlists

Public Function GetRequest(ByVal username As String, ByVal password As String) As YouTubeRequest
  Dim youtubeSettings = New YouTubeRequestSettings("test", DeveloperKey, username, password)
  Dim youtubeRequest As New YouTubeRequest(youtubeSettings)
  Return youtubeRequest
End Function

Public Function GetUserPlaylists(ByVal username As String, ByVal password As String)
  Dim youtubeRequest As YouTubeRequest = Me.GetRequest(username, password)
  Try
    Dim userPlaylists As Feed(Of Playlist) = youtubeRequest.GetPlaylistsFeed(username)

    If True Then
    End If
  Catch ex As Exception
  End Try
End Function

1 Ответ

0 голосов
/ 19 декабря 2011
Dim youtubeRequest As YouTubeRequest = Me.GetRequest(username, password)

        Dim url As String = "https://gdata.youtube.com/feeds/api/users/default/playlists?v=2"

        Try

            Dim feedQuery As New FeedQuery(url)
            Dim userPlaylists As Feed(Of Playlist) = youtubeRequest.Get(Of Playlist)(feedQuery)

            If True Then

            End If


        Catch ex As Exception

        End Try

    End Function
...