Questions tagged [feed]

A web feed is a data format used for providing users with frequently updated content.

A web feed is a data format used for providing users with frequently updated content.

A typical scenario of web feed use is:

  • a content provider publishes a feed link on their site which end users can register with an aggregator program (also called a feed reader or a news reader) running on their own machines;
  • doing this is usually as simple as dragging the link from the web browser to the aggregator. When instructed, the aggregator asks all the servers in its feed list if they have new content;
  • if so, the aggregator either makes a note of the new content or downloads it. Aggregators can be scheduled to check for new content periodically. Web feeds are an example of pull technology, although they may appear to push content to the user.
2620 questions
12
votes
4 answers

Creating RSS feed from database, how many items to put into feed so that they are all likely to be consumed?

I'm creating several RSS feeds from a database to publish things like job openings, volunteer opportunities, and links in general. My question is, how many items should be returned in the feed so that it is most likely that someone will get all the…
busse
  • 1,761
  • 14
  • 25
11
votes
2 answers

How big is too big for an RSS feed XML file?

I'm implementing an RSS feed for a website and I don't understand certain things about the format/size/content of the XML file for the feed. I'm initializing the site with the past data, which runs back to 1999 (there was no feed at any point before…
David-W-Fenton
  • 22,871
  • 4
  • 45
  • 58
11
votes
1 answer

Adding Images or Thumbnails to Atom 1.0 Entries

This StackOverflow answer suggests that you should use HTML entry content and use a standard tag to link to your images.
Muhammad Rehan Saeed
  • 35,627
  • 39
  • 202
  • 311
11
votes
4 answers

Get current news for a location

Is it possible in an iOS application to get current news for a particular location ? Is there some api available where I can pass location as parameter and get news for that location ?
Nitish
  • 13,845
  • 28
  • 135
  • 263
11
votes
4 answers

Displaying Twitter feed stopped working

The default way to display a twitter feed has stopped working. Here is an example code: The feed should…
Henrik Petterson
  • 6,862
  • 20
  • 71
  • 155
10
votes
1 answer

Questions about generating an iCal feed

Other than providing an URL to request the most recent iCal feed, anything I need to pay special attention to generating an iCal feed?? How to indicate if ics file has been updated or not? http header LAST-MODIFIED? What to do if the iCal file is…
Henry
  • 32,689
  • 19
  • 120
  • 221
10
votes
2 answers

Best approch of Elastic Search time based feeds module?

I am new with elastic search and looking for the best solution with which i can create a feed module which have time based feeds along with there group and comment. I learned little and come up with following. PUT /group { "mappings":…
10
votes
1 answer

java.lang.ClassCastException: com.google.gdata.data.TextContent cannot be cast to com.google.gdata.data.OutOfLineContent

I would slide all cell in a sheetwork , but I don't resolve. My code is: SpreadsheetService service = new SpreadsheetService("MyApp"); try{ URL SPREADSHEET_URL = new…
mc_marad
  • 179
  • 1
  • 1
  • 10
10
votes
4 answers

OAuthException (#368) The action attempted has been deemed abusive or is otherwise disallowed

I'm trying to post a feed on my wall or on the wall on some of my friends using Graph API. I gave all permissions that this application needs, allow them when i make the request from my page, I'm having a valid access token but even though this…
Sveti Jorjo
  • 131
  • 1
  • 1
  • 4
10
votes
2 answers

RSS Auto Discovery

I've been doing web dev for years, but this is my first jump into XML. I've created an RSS feed and I cannot figure out how to get the browser to "discover" my feed and display the little RSS icon in the address bar. The website in question is:…
Jesse Leite
  • 6,581
  • 3
  • 18
  • 17
10
votes
3 answers

Facebook Open Graph API: weird behavior of parameter limit while getting a paginated user's news feed

I've written a little script in JAVA, that tests the parameter limit with four different values (10, 100, 1000 and 10000) when querying a user's news feed of Facebook using the Open Graph API and the RestFB client. As you'll see, it has a strange…
sp00m
  • 47,968
  • 31
  • 142
  • 252
9
votes
2 answers

How to properly place Date in element on RSS feed

I'm using RSS Graffitty to post RSS items to a facebook page. The app told me the items were missing the publication date so I added this tag: echo "".$row['Date'].""; $row['Date'] is obtained from my MySQL database and it's a…
lisovaccaro
  • 32,502
  • 98
  • 258
  • 410
9
votes
2 answers

RSS Feed for Apple News Format

We are creating a feed specifically for Apple News in order to submit our news content. Naturally, I've been going over the provided documentation after ensuring the feed is RSS 2.0 compliant to make sure that it is also compliant with Apple…
tdlm
  • 597
  • 3
  • 14
9
votes
2 answers

RSS Feed parser library in Java

Is there any Java helper utils/libraries available for parsing Rss/Atom feed? I checked RSSUtils but it looks like outdated.
Veera
  • 32,532
  • 36
  • 98
  • 137
9
votes
1 answer

Rails AtomFeedBuilder Entry :Url option appears in url tag but not in link tag

I'm using the AtomFeedHelper and everything is working fine except for one feed where I need to link each entry to a URL which is not the default polymorphic_url for the record. Per the documentation I've specified an :url option for the entry. This…
Nick
  • 8,483
  • 10
  • 46
  • 65