Nemesisesq
Visitor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2014
09:02 AM
Ooyala Integration: No feed Tag found
Hey I'm having some trouble using the syndication feed from Ooyala. I am using the Video player project as my base project and I put the feed url in the feed parameter in the category leaf tag in category.xml when I try to retrieve the feed I get a no feed tag error. Any Ideas for how I can fix this?
-Carl
-Carl
1 REPLY 1


Roku Employee
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2014
12:43 PM
Re: Ooyala Integration: No feed Tag found
If you find the code that's generating that error...
...it happens when it can't find an XML element named feed.
Most likely, the feed uses a different XML schema than the parsing logic is expecting.
if xml.GetName() <> "feed" then
print "no feed tag found"
return feed
endif
...it happens when it can't find an XML element named feed.
Most likely, the feed uses a different XML schema than the parsing logic is expecting.