Hi I've been trying this for a couple of days so would appreciate any advice some people here might be able to give.
In summary, with iGoogle now gone, I am trying to create my own replacement homepage using various RSS feeds.I thought using JavaScript would presumably mean that if I'm logged into the Google Service in my browser, I can access my RSS feed. Perhaps my problem is purely down to that flawed assumption? Anyway, long story short, if I use the code below, I get a success message when I use a BBC News feed, but a failure message when I switch it to use the Google Bookmarks feed. Here is a simple unit test example of what I'm trying: <script type="text/javascript" src="https://www.google.com/jsapi"></script> > <script type="text/javascript"> > // load the feeds module google.load("feeds", "1"); > // load feed and output result var feed = new > google.feeds.Feed("https://www.google.com/bookmarks/?output=rss"); > feed.load(function(result){ > if (result.error){ alert("error"); > } > else{ > alert("good"); > } > }); > </script> I presume I am getting no results because I am failing to authenticate. Does anyone have a solution? -- -- You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] To view this message on the web, visit https://groups.google.com/d/msgid/google-ajax-search-api/56d93e7a-eb6a-4d2d-8622-8834342096b1%40googlegroups.com For more options, visit this group at http://groups.google.com/group/google-ajax-search-api?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "Google AJAX APIs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
