I wanna parse RSS feed with QML.
the feed structure looks like
<channel>
<item>
<title>
</title>
<description>
</description>
<media:content url="http://someURLHere.com/avatar/somethingHere?s=96&d=identicon&r=G" medium="image">
</media:content>
</item>
my problem is with the media:content tag, how can i parse the url with QML into a string ?
Can’t add a comment to coyotte508’s answer, so here it is instead: you might need to add namespace for the ‘media’ using the XmlListModel’s namespaceDeclarations property. An example: