Hi,
Since yesterday evening the behaviour of my App changed and i dont find the
reason.
I am fetching youtube playlists using the GData XML API like this:
for(GDataEntryYouTubePlaylistLink* playlistLink in feed.entries){
[[self youTubeService] fetchFeedWithURL:[[playlistLink content] sourceURL]
delegate:self
didFinishSelector:@selector
(playlistTicket:finishedWithFeed:error:)];
}
I checked the sourceURL in a browser and it loads a xml containing
keywords. But in my callback
- (void)playlistTicket:(GDataServiceTicket *)ticket finishedWithFeed:(
GDataFeedYouTubePlaylist *)feed error:(NSError *)error {
GDataYouTubeMediaGroup* mediaGroup = [entry mediaGroup];
GDataMediaKeywords* mediaKeywords = [mediaGroup mediaKeywords];
NSArray* keyword = [mediaKeywords keywords];
}
keyword is nil. This wasn't so yesterday morning. Something must have been
changed and I dont find the reason...
Can anyone help?