0
我試圖解析YouTube數據API提供的YouTube Feed。此Feed列出了所有視頻uploaded by a specific user,與此類似:https://gdata.youtube.com/feeds/api/users/google/uploads?v=2Parse youtube api feed v2
我在iOS應用中使用了touchXML。我嘗試使用CXMLDocument中的nodesForXPath函數收集所有<entry>
節點。
NSURL *url = [NSURL URLWithString: newsFeedUrl];
CXMLDocument *feedParser = [[CXMLDocument alloc] initWithContentsOfURL:url options:0 error:nil];
NSArray *resultNodes = [feedParser nodesForXPath:@"//entry" error:nil];
NSLog(@"%@",resultNodes.count); // >>> return (null)
但是這個查詢不返回任何東西。我檢查了xpath語法;我不認爲這是錯的。