0
votes
0answers
53 views

How to get RSS /Atom by JavaScript which needs to add credentials

I need to create a rss/atom reader in Javascript/jquery. The problem is rss/atoms are not public and I have to spacify username and password to get atom. I have successfully created a asp.net ...
0
votes
0answers
60 views

client side display results of asynchronous tasks [django]

I'd like to know if there is a better way/pattern of doing what i have in mind. I have a server side process that executes asyncronous tasks. Am planning to use celery for this. the asynchronous ...
1
vote
0answers
152 views

Accessing gmail atom feed when users are logged in with CAS

I am working on a liferay portal. Users are logged into the portal via a CAS sign on and this same CAS sign on also logs users into their gmail accounts (Single sign on). Passwords are not imported ...
0
votes
2answers
749 views

Jquery RSS/Atom feed (jfeed) origin issue (Origin xxxxx is not allowed by Access-Control-Allow-Origin.)

So I'm using jFeed (https://github.com/jfhovinne/jFeed) to try to retreive a facebook pages rss feed. I can manually navigate to the RSS just fine ...
1
vote
2answers
116 views

Consume various feed formats via a library (C# or PHP)?

I am looking for a library in either C# or PHP to consume various kinds of feeds such as RSS, Atom, eBay, Amazon, YouTube, Flickr, Twitter, Yelp, etc so I can standardize them under a single format to ...
0
votes
1answer
384 views

Unable to parse atom feed using jQuery

I'm using jFeed to parse atom feed and trying to display the title. I had written success and error functions but it's not getting into either success or error function. Below is my code. Please let ...
1
vote
0answers
103 views

I cannot select <title> tag in Atom XML using jQuery

I get a Google Picasa web albums' atom data through Ajax using jQuery. This atom data looks like this: http://code.google.com/apis/picasaweb/docs/2.0/developers_guide_protocol.html#ListAlbums When I ...
4
votes
1answer
236 views

I cannot select <title> tag in Atom XML using jQuery

I get Atom data through Ajax using jQuery. I write $(xhr).find('entry id').eq(0).html(); is OK. But $(xhr).find('entry title').eq(0).html(); can not select anything. title tag is actually ...
0
votes
1answer
950 views

How do I load content from a blogger blog with jquery?

I want to get individual posts from a blogger blog, and make them into individual classes and add their content to my website. I need to do this because the hardware that I'm hosting my website on has ...
0
votes
1answer
826 views

Read data from ATOM file with jquery

i'm trying to read a xml/atom file, the code is: $.ajax({ type: 'GET', url: options.url, data: options.data, dataType: 'xml', async:options.async, ...
0
votes
2answers
1k views

Twitter Search Results - API / Atom Feed

So I've got somewhat of a cool task and I'm just thinking it over. I'm more a designer so I thought I'd tap into the bright minds on here. I am creating a basic page that displays the results from a ...
2
votes
4answers
2k views

Trouble Parsing Atom feed with jQuery

I have an Atom feed like this... <?xml version="1.0"?> <feed xml:base="http://earthquake.usgs.gov/" xmlns="http://www.w3.org/2005/Atom" ...