1

I am making a webapp that uses feeds to get website urls. I want to make it so users can click a button and it will automatically add all of the feeds from their google reader accounts. Is there a way to do this? Thanks in advance for any help.

LunaCodeGirl
  • 5,432
  • 6
  • 30
  • 36

1 Answers1

0

check out the answer to Google Reader API?

Community
  • 1
  • 1
Robert Levy
  • 28,747
  • 6
  • 62
  • 94
  • I think my case is a little different. That seems to pertain to using google's API's to make an RSS feeder easily using Javascript. I want to be able to grab from google's database a list or something like that of all of the feeds that a given user already has in their Google Reader. Sorta like with facebook's APIs you can grab a list of things people like, I wanna grab a list of feed urls. – LunaCodeGirl Jan 22 '11 at 01:37
  • it's about what HTTP requests you need to make - not at all specific to javascript. and halfway down it says "Gets a list of your subscriptions: www.google.com/reader/api/0/subscription/list?output=xml" which is the URL you make a request to with the appropriate auth header set – Robert Levy Jan 22 '11 at 02:19
  • 1
    that's exactly what that answer does. After I wrote that I put together a tutoril for mobiletuts using php. You can check it out here, http://mobile.tutsplus.com/tutorials/mobile-web-apps/building-a-mobile-web-application-with-the-google-reader-api/ – smilbandit Jan 22 '11 at 02:22
  • Wow...I'm sorry, thanks a million for the help. I'll look closer next time. My bad guys. – LunaCodeGirl Jan 23 '11 at 00:03