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">
// 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?