I am trying to use the Google Ajax API to fetch media rss from a fliqz which is a paid video hosting service.
Below is a snapshot of the xml returned by the service <?xml version="1.0" encoding="utf-8"?> <rss version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema- instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:fzat="urn:fliqz:ast:s:20090819" xmlns:a10="http://www.w3.org/ 2005/Atom" xmlns:media="http://search.yahoo.com/mrss/"> <channel> <title>Results</title> <description>Description</description> <link>http://services.fliqz.com/assets/20090819/AssetSearch.svc/ 9b5f5719-702e-44c7-86f0-43f7bcb6cf1a/applications/bfa8c016- fda5-4067-910f-f9a532acfc06/</link> <pubDate>Sat, 14 Aug 2010 12:29:32 -0700</pubDate> <lastBuildDate>Sat, 14 Aug 2010 12:29:32 -0700</lastBuildDate> <a10:link href="http://services.fliqz.com/assets/20090819/ AssetSearch.svc/9b5f5719-702e-44c7-86f0-43f7bcb6cf1a/applications/ bfa8c016-fda5-4067-910f-f9a532acfc06/?n=1&z=20" rel="self"/> <a10:link href="http://services.fliqz.com/assets/20090819/ AssetSearch.svc/9b5f5719-702e-44c7-86f0-43f7bcb6cf1a/applications/ bfa8c016-fda5-4067-910f-f9a532acfc06/related/" rel="related"/> <fzat:pages>1</fzat:pages> <fzat:itemTotal>1</fzat:itemTotal> <item> <title>Lorianne Crook's Celebrity Kitchen Ep23</title> <description>Barbara Mandrell’s son, Chef Matt Dudney, prepares meaty Italian Stew and Bleu Cheese mashed potatoes</description> <guid isPermaLink="false">9b5f5719-702e-44c7-86f0-43f7bcb6cf1a</ guid> <link>http://www.fliqz.com/aspx/permalink.aspx? vid=9b5f5719702e44c786f043f7bcb6cf1a</link> <pubDate>Tue, 13 Jul 2010 05:45:49 -0700</pubDate> <media:content fzat:state="published" fzat:approved="true" medium="video" duration="1561" height="338" width="450"> <fzat:metrics plays="2" ratings="0" votes="0" shares="0"/> <fzat:behavior play="false" mute="false"/> <fzat:embed><object classid="clsid:D27CDB6E- AE6D-11CF-96B8-444553540000" codebase="http://download.macromedia.com/ pub/shockwave/cabs/flash/swflash.cab#version=9,0,115,0" id="player" width="450" height="392"><param name="movie" value="http:// applications.fliqz.com/9b5f5719702e44c786f043f7bcb6cf1a.swf" / ><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent" /><param name="allowScriptAccess" value="always" /><embed name="player" src="http://applications.fliqz.com/ 9b5f5719702e44c786f043f7bcb6cf1a.swf" width="450" height="392" allowfullscreen="true" wmode="transparent" allowscriptaccess="always" type="application/x-shockwave-flash" pluginspage="http:// www.macromedia.com/go/getflashplayer"></embed></object></fzat:embed> <media:keywords>loriannec</media:keywords> <media:player url="http://applications.fliqz.com/ 9b5f5719702e44c786f043f7bcb6cf1a.swf" height="450" width="450"/> <media:thumbnail url="http://previews.fliqz.com/ 9b5f5719-702e-44c7-86f0-43f7bcb6cf1a.jpg?a=bfa8c016-fda5-4067-910f- f9a532acfc06" height="338" width="450" time="4000" fzat:isDefault="true"/> <media:thumbnail url="http://images.fliqz.com/ 6e130e1e8b634bec94e11df5b22833d2.jpg" height="338" width="450" time="2000" fzat:isDefault="false"/> <media:thumbnail url="http://images.fliqz.com/ f541e8c139c84fdfa68e91bf42295d46.jpg" height="338" width="450" time="4000" fzat:isDefault="false"/> <media:thumbnail url="http://images.fliqz.com/ 2776ac1d77284110bc4b265ddab2594d.jpg" height="338" width="450" time="6000" fzat:isDefault="false"/> <media:thumbnail url="http://images.fliqz.com/ 53c2637e647a47119e0ffd801c03d6f3.jpg" height="338" width="450" time="8000" fzat:isDefault="false"/> <media:thumbnail url="http://images.fliqz.com/ 8736ce6567a642d7a644fab1aff05d14.jpg" height="338" width="450" time="10000" fzat:isDefault="false"/> </media:content> </item> </channel> </rss> My question is that how can I fetch these tags media:content fzat:embed media:keywords media:thumbnail Thank you -- You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en.
