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
8
votes
2 answers

Getting error when trying to open a feed dialog

I am getting the following error when trying to open a feed dialog.. An error occurred. Please try again later. Do I need to have users authorize the app to post on their wall? I was thinking it wouldn't because this would not be something that gets…
Dustin
  • 4,314
  • 12
  • 53
  • 91
8
votes
8 answers

feed dialog: picture not showing up

My Facebook feed dialog link correctly renders a dialog page, but the image set with the picture parameter does not show up -- just the gray line that indicates no picture. I've changed picture files and types a few times, but the image still…
Bill Scheurer
  • 143
  • 1
  • 2
  • 9
8
votes
1 answer

How can I retrieve the full newsfeed of a user via the Facebook API?

I would like to retrieve the full newsfeed including historical data of a given user. In principal, this is straight forward using either an authenticated call to the Graph API or to the FQL API. With the Graph API, I access the me/home endpoint.…
kongo09
  • 1,281
  • 10
  • 23
8
votes
5 answers

LIMIT, SINCE and UNTIL parameters in page feed

I'm trying to get the news feed of page (I'm admin of that page) using the limit, since and until parameters, but it doesn't work, it doesn't work even in graph api explorer tool. I'm requesting the following: $fb->api("/PAGE_ID/feed?limit=100") but…
haynar
  • 5,961
  • 7
  • 33
  • 53
8
votes
1 answer

Limit of entries in Graph API 'home' results

I want to get stream entries from the last x days or weeks in the past. But when I call the news feed via Graph API with parameter 'limit' or 'until', I get entries from the last 48 hours only, no matter how high I define the parameter, also paging…
ch345
  • 81
  • 2
8
votes
2 answers

Get instagram own/self feed with facebook graph api

I'm quite new using instagram API/Graph API but I can't find answers to my questions. Since Instagram API is deprecated, now we have to deal with instagram/facebook graph API. I am aware of the new procedure…
Fabi1
  • 79
  • 1
  • 5
8
votes
5 answers

Link to RSS/Atom feed, relative, doesn't work in Firefox

I have a weird problem. I generate a HTML page, hosted let's say at http://www.x.com/stuff which contains .. The result is: In IE7 all works well - you can…
Adrian Smith
  • 17,236
  • 11
  • 71
  • 93
8
votes
1 answer

Check if remote file is well-formed XML with PHP

I have a PHP-driven site that includes an XML stock feed, which is remotely served from ASP (i.e. the XML feed url is of the order: http://remote.com/client.asp). As the feed is often unavailable (by which I mean the site returns an ASP error) I'd…
da5id
  • 9,100
  • 9
  • 39
  • 53
8
votes
1 answer

Exposing data in an atom feed

How do I add extra data into an atom feed that does not map into the standard entry nodes (title, link, id, updated, summary)? Is it possible to add my own custom xml here and still be compliant with the spec?
NabilS
  • 1,421
  • 1
  • 19
  • 31
8
votes
10 answers

Where is the Facebook Status feed URL these days?

I know that it was previously possible to display your most recent Facebook statuses on your website as an RSS feed, but it seems they've changed their setup and I can't figure out where to find the feed anymore.... I saw some people searching for…
Chris Schmitz
  • 8,097
  • 6
  • 31
  • 41
8
votes
3 answers

Graph OAuthException 1500 : The url you supplied is invalid

As of today, almost all of my app's calls to share links on user's feeds are failing with the following error: { "message": "(#1500) The url you supplied is invalid", "type": "OAuthException", "code": 1500 } Uisng PHP cURL, I'm posting…
Graham
  • 6,484
  • 2
  • 35
  • 39
8
votes
4 answers

Python 3.1 RSS Parser?

Anyone know of a good feed parser for python 3.1? I was using feedparser for 2.5 but it doesn't seem to be ported to 3.1 yet, and it's apparently more complicated than just running 2to3.py on it. Any help?
matthew
  • 419
  • 1
  • 6
  • 10
8
votes
2 answers

Displaying images in atom feed

I have problems with displaying images in atom file. It doesn't include images in feed in google reader, opera or firefox. As a starting point I did everything like in Listing 6. at [An overview of the Atom 1.0 Syndication Format] But it doesn't…
kmasalski
  • 238
  • 4
  • 17
8
votes
3 answers

Facebook page's posts feed

Does anyone know how to fetch a facebook page's rss-feed nowadays? When I log in as a page and go to http://www.facebook.com/feeds/notifications.php?id=xx&viewer=xx&key=xx&format=rss20, I get an empty feed. Is there a corresponding "page" feed that…
Kalle Stropp
  • 103
  • 1
  • 1
  • 4
7
votes
7 answers

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

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…
0xdeadbeef
  • 4,090
  • 8
  • 33
  • 37