I got the following error message in Flex Builder while reading a RSS feed:
The reference to entity “v” must end with the ‘;’ delimiter
To resolve the above error message, replace “&” with “&” in the RSS feed.
For example, the RSS feed for a youtube channel is:
http://gdata.youtube.com/feeds/base/users/username/uploads?alt=rss&v=2&orderby=published&client=ytapi-youtube-profile
to avoid the error message, the feed can be reworked as:
http://gdata.youtube.com/feeds/base/users/username/uploads?alt=rss&v=2&orderby=published&client=ytapi-youtube-profile
Advertisement