feeds

How can I retrieve all posts from a Blogger (blogspot.com) blog?

谁都会走 提交于 2019-12-10 13:22:09
问题 I have a blog at http://westernwakefarmersmarket.blogspot.com/ and I'd like to migrate the content to a new MVC web application I'm developing. I'm trying to retrieve all of the existing posts to migrate them into a database. I'm having trouble getting all of the posts, however. When I connect to the blog with Windows Live Writer, it's able to retrieve all of the posts (probably over a hundred). When I point to the ATOM feed for the blog at http://www.blogger.com/feeds/7916832134968916231

How to get more Feed items?

♀尐吖头ヾ 提交于 2019-12-09 18:03:13
问题 How would I get the next page or more results for a feed? For example, when I go to Security Now feed page, there is no "next" link of any kind and the url parameter of "page=100" does nothing: http://leoville.tv/podcasts/sn.xml I get only 1 page of results of about 20 episodes. However my Google Reader can successfully retrieve episodes that are earlier than that. 回答1: Indeed it is true that Google Reader caches the items and it is NOT possible to paginate on RSS2, RSS or Atom feeds (unless

Reading the Stack Overflow RSS feed

妖精的绣舞 提交于 2019-12-09 14:05:47
问题 I'm trying to get a list of unanswered questions from the feed, but I am having trouble reading it. const string RECENT_QUESTIONS = "https://stackoverflow.com/feeds"; XmlTextReader reader; XmlDocument doc; // Load the feed in reader = new XmlTextReader(RECENT_QUESTIONS); //reader.MoveToContent(); // Add the feed to the document doc = new XmlDocument(); doc.Load(reader); // Get the <feed> element XmlNodeList feed = doc.GetElementsByTagName("feed"); // Loop through each item under feed and add

Is it possible to use authentication in RSS feeds using php?

瘦欲@ 提交于 2019-12-09 05:57:42
问题 I'm trying to develop a feed for an intranet document management system, so that staff can be notified of new documents. I have actually completed coding it, but there is no way to authenticate the user. Also I'm not successful in adding the feed to news readers, but works with firefox Live Bookmark. Any Ideas Update: Since I couldn't explain really well, I'll be specific I want it to work inside OutLook RSS Feeds. Thanks 回答1: Well it's not very common, but i read an article about it a while

How do you add another namespace to WCF SyndicationFeed?

心已入冬 提交于 2019-12-08 05:34:24
In my feed generation code I have things like: XNamespace itunesNS = "http://www.itunes.com/dtds/podcast-1.0.dtd"; feed.ElementExtensions.Add( new XElement(itunesNS + "subtitle", new XAttribute(XNamespace.Xmlns + "itunes", itunesNS.NamespaceName), "sample subtitle").CreateReader()); which generates something like this: <itunes:subtitle xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">sample subtitle</itunes:subtitle> How can I get the declaration of the itunes namespace (xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd") in the channel element so it doesn't have to be repeated

Nested resource with Atom Feed Helper

◇◆丶佛笑我妖孽 提交于 2019-12-08 04:05:08
问题 I'm trying to use the Rails Atom Feed Helper to generate a feed for a nested resource. My view template (index.atom.builder) is: atom_feed(:schema_date => @favourites.first.created_at) do |feed| feed.title("Favourites for #{@user.login}") feed.updated(@favourites.first.created_at) @favourites.each do |favourite| feed.entry(favourite, :url => favourite.asset.external_ref) do |entry| entry.title(favourite.asset.external_ref) entry.content(image_tag(favourite.asset.location), :type => 'html')

How to get the public channel URL from YouTubeVideoFeed object using the YouTube API?

 ̄綄美尐妖づ 提交于 2019-12-07 19:20:28
I'm using the Python version of the YouTube API to get a YouTubeVideoFeed object using the following URL: http://gdata.youtube.com/feeds/api/users/USERNAME/uploads Note: I've replaced USERNAME with the account I need to follow. So far getting the feed, iterating the entries, getting player urls, titles and thumbnails has all been straightforward. But now I want to add a "Visit Channel" link to the page. I can't figure out how to get the "public" URL of a channel (in this case, the default channel from the user) out of the feed. From what I can tell, the only URLs stored directly in the feed

Is it possible to get RSS archive

倾然丶 夕夏残阳落幕 提交于 2019-12-07 06:40:25
问题 I know that rss feeds is news...Is it possible to get rss feed's from yesterday or day before yesterday...(more exactly, archive of rss feeds). 回答1: No, the server decides what posts to feed you. Your RSS server might be configured to let you have more posts by supplying arguments to the feed url - but thats unlikely. 来源: https://stackoverflow.com/questions/2123918/is-it-possible-to-get-rss-archive

Javascript XML parsing [closed]

和自甴很熟 提交于 2019-12-06 14:18:15
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . What is the best JavaScript library to parse XML/RSS/Atom feeds? Is there something like Python Feed parser but then for JavaScript ? thanks, Pero 回答1: JKL parseXML is an awesome toolkit for that. http://www.kawa.net/works/js/jkl/parsexml-e.html 来源: https://stackoverflow.com/questions/1031231/javascript-xml

Is it possible to get RSS archive

▼魔方 西西 提交于 2019-12-05 09:03:46
I know that rss feeds is news...Is it possible to get rss feed's from yesterday or day before yesterday...(more exactly, archive of rss feeds). No, the server decides what posts to feed you. Your RSS server might be configured to let you have more posts by supplying arguments to the feed url - but thats unlikely. 来源: https://stackoverflow.com/questions/2123918/is-it-possible-to-get-rss-archive