Questions tagged [atom-feed]

Atom is an XML based news-feed format. For the text editor from Github, use the [atom-editor] tag.

Atom is an XML-based document format that describes lists of related information known as "feeds". Feeds are composed of a number of items, known as "entries", each with an extensible set of attached metadata. For example, each entry has a title.

The primary use case that Atom addresses is the syndication of Web content such as weblogs and news headlines to Web sites as well as directly to user agents.

689 questions
0
votes
1 answer

How to secure SyndicationFeeds For display in MVC view

I am reading in Rss / Atom feeds from external sites using the SyndicationFeed XmlReader reader = XmlReader.Create(RssFeed); SyndicationFeed feed = SyndicationFeed.Load(reader); what's the best way to avoid common security risks in reading in…
Axe
  • 764
  • 6
  • 29
0
votes
1 answer

Google Feed API: "The port specified in the feed URL is not supported."

I am trying to implement the Google Feed API to access an ATOM feed from a server and then display the data on a mobile web app. I get the error "The port specified in the feed URL is not supported." Any thoughts or suggestions? // Google Feed…
birwin93
  • 93
  • 6
0
votes
3 answers

Aggregating feeds in Rails application

I am thinking of writing a daemon to loop through feeds and then add them into the database as ActiveRecord objects. Firstly, one problem I am facing is that I cannot reliably retrieve the author/user of a story using the feed-normalizer gem. It…
Jaryl
  • 2,561
  • 1
  • 24
  • 33
0
votes
1 answer

Setting entry id with Rails' atom_feed helper

I am using the atom feed builder method in Rails 3.2.2 to create a custom atom feed for a model's index method. I need to set the feed entry ids to a custom url. Currently the builder looks like this: atom_feed ({:id => request.url}) do |feed| …
tks
  • 745
  • 9
  • 31
0
votes
1 answer

Selecting specific namespaced content from an RSS feed using coreylib

I am attempting to use coreylib to do some RSS feed parsing. So far, it has performed well enough for what I'm using it for (which is not bad, considering the only documentation I can find is what's on the github page...!) Recently, however, I've…
Julian H. Lam
  • 25,501
  • 13
  • 46
  • 73
0
votes
1 answer

XML ATOM to SimpleXML Object losing data

Hi, i have a simple problem. When i try to convert an atom XML string to simplexml object or using simplexml_load_data function, it seems to drop many attributes data.. like in my original string i have
mahen3d
  • 7,047
  • 13
  • 51
  • 103
0
votes
1 answer

About Googles PubSubHubbub drawback

I was reading a paper titled "An Optimized Web Feed Aggregation Approach for Generic Feed Types" and googles PubSubHubbub protocol was discussed and the paper stated its drawback something like Furthermore, there are patch systems such as…
Rajeshwar
  • 11,179
  • 26
  • 86
  • 158
0
votes
2 answers

Jquery (jfeed) - Origin xxxxx is not allowed by Access-Control-Allow-Origin

I'm using jFeed to try to retrieve a Facebook page's RSS feed. I can manually navigate to the RSS just fine (https://www.facebook.com/feeds/page.php?format=atom10&id=12345) but when I try to use the following code, I end up with the error "Origin…
user736893
-1
votes
1 answer

Generating an atom or rss feed as part of an msbuild process

I'm thinking it would be convenient to alert interested parties to the completion of the build process via an Atom or RSS feed. I'm guessing someone somewhere has taken the time to do this, but...maybe your google-fu is better than mine, but this…
Daniel Pratt
  • 12,007
  • 2
  • 44
  • 61
-1
votes
1 answer

Feed RSS and tag with fake emails

In the feed rss I can add the tag . But to add it I have to add also an email. For example My RSS https://www.mywebsite.com/xml/xml_rss.asp Item One
J.Luca
  • 208
  • 1
  • 10
-1
votes
1 answer

What is the correct Content-Type for the Google Data syntax as used in the Google Contacts API?

I need to read and update the Google Shared Contacts in a G Suite domain using Golang. Since there is no existing Go client library for this API, I'm having to interact with the API at the http level. Presently, I'm stuck on sending the correct…
Schparky
  • 429
  • 4
  • 10
-1
votes
1 answer

cURL request for .ATOM feed issue

This is my XML format .ATOM feed. I am getting the following WARNINGS. I am facing issues trying to extract the data from the ATOM URL and display it as a PHP code and save it to the DATABASE. I keep getting these errors... I have tried using…
-1
votes
1 answer

Do MIME types REQUIRE the subtype to be specified

The question is clear enough, but let me flesh it out with the actual example I am encountering: In interpreting an RSS feed, there is an image specified sometimes where it is not known what kind of image it is, but it is nonetheless clear that the…
Nicholas Petersen
  • 9,104
  • 7
  • 59
  • 69
-1
votes
1 answer

How digg reader finds the feed url[s] for a given site?

It is that we can add a url to digg.com reader to add them to one's reading list. Once we submit the link they(digg) find several links which points to the feed map(.xml or from feedburner etc). How do they do this ?
guy_fawkes
  • 947
  • 8
  • 31
-1
votes
1 answer

How does Syndication work in Django?

Why this (hopefully) isn't a broad question: I've been looking at the Django source code on syndication. I understand functionally what these feeds are and what they do but I'm not sure how the magic happens. Actual question: What is Django doing…
theWanderer4865
  • 861
  • 13
  • 20
1 2 3
45
46