Joshua Kinberg wrote: > Just to reiterate... I believe these URLs work as expected in FireAnt. > Please send me an RSS feed that uses this option in Feedburner so I can > double check. Thanks.
My feed has always been fine: http://tinkernet.org/feed/ has enclosure links like so: http://tinkernet.org/enclose.cgi/http://www.archive.org/download/Kid_Gymnastics/20060223kidgymnastics.mov use curl -I on that and you get: HTTP/1.1 302 Found Date: Thu, 16 Mar 2006 17:53:18 GMT Server: Apache/1.3.31 (Unix) mod_ssl/2.8.20 OpenSSL/0.9.7d mod_perl/1.29 PHP/4.4.1 Location: http://www.archive.org/download/Kid_Gymnastics/20060223kidgymnastics.mov Content-Type: text/html; charset=iso-8859-1 use curl -I on the Location and you get: HTTP/1.1 302 Found Date: Thu, 16 Mar 2006 17:53:25 GMT Server: Apache/1.3.33 (Debian GNU/Linux) PHP/5.0.4-0.4 X-Powered-By: PHP/5.0.4-0.4 Location: http://ia300113.us.archive.org/2/items/Kid_Gymnastics/20060223kidgymnastics.mov Content-Type: text/html; charset=iso-8859-1 which sends you the Location of the actual file, which you can then request... use curl -I on the Location and you get: HTTP/1.1 200 OK Date: Thu, 16 Mar 2006 17:55:32 GMT Server: Apache/1.3.33 (Debian GNU/Linux) PHP/5.0.4-0.7 Last-Modified: Thu, 23 Feb 2006 11:37:25 GMT ETag: "ee-e7823-43fd9e75" Accept-Ranges: bytes Content-Length: 948259 Content-Type: video/quicktime So FireAnt (and any other http client that does the right thing) should always get it... I could have just as easily used a URL like: http://tinkernet.org/enclose.cgi/1746 but I like my URLs ;) they have the added side-effect of logging each request on my own server, even though the file is stored elsewhere. Pete -- http://tinkernet.org/ videoblog for the future... Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/videoblogging/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
