<?xml version="1.0" encoding="UTF-8"?>
<post>
  <body>Script was only getting the first 250 for me.. it seems the &quot;continuation&quot; element is now called &quot;gr:continuation&quot;.. fixing this in the script gets it working again

Now I have extracted all my 7530 starred item links from Google Reader :)

Edit: Some of the extracted links are of the form &quot;tag:&quot; which I understand is something to do with Atom, however I needed real links - adding the following gets the real link in most cases I have seen where &quot;tag:...&quot; is used:

find:
&lt;pre&gt;
	var link = entries[i].getElementsByTagName('id')[0].getAttribute('gr:original-id');
&lt;/pre&gt;

add the following after the above line:
&lt;pre&gt;
	if (!(/^http/.test(link))) {
		link = entries[i].getElementsByTagName('link')[0].getAttribute('href');
	} 
&lt;/pre&gt;</body>
  <body-html>&lt;p&gt;Script was only getting the first 250 for me.. it seems the &quot;continuation&quot; element is now called &quot;gr:continuation&quot;.. fixing this in the script gets it working again&lt;/p&gt;

&lt;p&gt;Now I have extracted all my 7530 starred item links from Google Reader :)&lt;/p&gt;

&lt;p&gt;Edit: Some of the extracted links are of the form &quot;tag:&quot; which I understand is something to do with Atom, however I needed real links - adding the following gets the real link in most cases I have seen where &quot;tag:...&quot; is used:&lt;/p&gt;

&lt;p&gt;find:
&lt;br /&gt;&lt;pre&gt;
	var link = entries[i].getElementsByTagName('id')[0].getAttribute('gr:original-id');
&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;add the following after the above line:
&lt;br /&gt;&lt;pre&gt;
	if (!(/^http/.test(link))) {
		link = entries[i].getElementsByTagName('link')[0].getAttribute('href');
	} 
&lt;/pre&gt;&lt;/p&gt;</body-html>
  <created-at type="datetime">2008-07-10T10:56:32Z</created-at>
  <forumable-id type="integer">2345</forumable-id>
  <forumable-type>Script</forumable-type>
  <id type="integer">66580</id>
  <topic-id type="integer">15825</topic-id>
  <updated-at type="datetime">2008-11-17T00:12:54Z</updated-at>
  <user-agent nil="true"></user-agent>
  <user-id type="integer">58967</user-id>
</post>
