Question
Retrieving XML with Coldfusion
I generally retrieve xml tags like so
<videos>
<video>
<thumbnail_small>
</thumbnail_small>
</video>
</videos>
<cfset temp = QuerySetCell(myquery, "thumbnail_small", #mydoc.videos.video.thumbnail_small.XmlText#, #i#)>
Im trying to do something similar with youtube's api found here, but the xml is slightly different:
How can I edit my code to retrieve the value for this tag?
<media:thumbnail>
