<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: A Little Help on Importing Gmail Contacts using Ruby on Rails</title>
	<atom:link href="http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/</link>
	<description>Watching Open Source unfold across Ireland</description>
	<lastBuildDate>Tue, 29 Nov 2011 14:11:11 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: UP</title>
		<link>http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/comment-page-1/#comment-3252</link>
		<dc:creator>UP</dc:creator>
		<pubDate>Sun, 14 Jun 2009 17:45:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/#comment-3252</guid>
		<description>I mean “AuthSubtoken=&quot;#{authsub_token}&quot;” --&gt; not working

“AuthSubtoken=#{authsub_token}” --&gt; working</description>
		<content:encoded><![CDATA[<p>I mean “AuthSubtoken=&#8221;#{authsub_token}&#8221;” &#8211;&gt; not working</p>
<p>“AuthSubtoken=#{authsub_token}” &#8211;&gt; working</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UP</title>
		<link>http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/comment-page-1/#comment-3251</link>
		<dc:creator>UP</dc:creator>
		<pubDate>Sun, 14 Jun 2009 17:44:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/#comment-3251</guid>
		<description>One fix that I needed this to work - you need to remove the outer quotes from around the token parameter.
Btw, the article was superb...helped me understand where to hang off all the code!

&quot;AuthSubtoken=#{authsub_token}&quot;</description>
		<content:encoded><![CDATA[<p>One fix that I needed this to work &#8211; you need to remove the outer quotes from around the token parameter.<br />
Btw, the article was superb&#8230;helped me understand where to hang off all the code!</p>
<p>&#8220;AuthSubtoken=#{authsub_token}&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: theirishpenguin</title>
		<link>http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/comment-page-1/#comment-1136</link>
		<dc:creator>theirishpenguin</dc:creator>
		<pubDate>Tue, 21 Oct 2008 21:11:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/#comment-1136</guid>
		<description>Just a quick word. When you go to deploy your app, localhost:3000 won&#039;t work anymore for contacting the Gmail API. You&#039;d need to register your Web Application with Google (this is outlined in the Atlantic Domain Solutions guide). As part of this you are asked to enter a Target URL path prefix (ie. the next parameter used in AuthSub). You should set this to be the path to the above controller action. So, for example, if your web app is lives at http://www.mycoolwebsite.net then the value for the Target URL path prefix should be

    http://www.mycoolwebsite.net/imported_contacts/authorise

Pay particular attention to not forget the &#039;www&#039; bit if that will be in your URLs!</description>
		<content:encoded><![CDATA[<p>Just a quick word. When you go to deploy your app, localhost:3000 won&#8217;t work anymore for contacting the Gmail API. You&#8217;d need to register your Web Application with Google (this is outlined in the Atlantic Domain Solutions guide). As part of this you are asked to enter a Target URL path prefix (ie. the next parameter used in AuthSub). You should set this to be the path to the above controller action. So, for example, if your web app is lives at <a href="http://www.mycoolwebsite.net" rel="nofollow">http://www.mycoolwebsite.net</a> then the value for the Target URL path prefix should be</p>
<p>    <a href="http://www.mycoolwebsite.net/imported_contacts/authorise" rel="nofollow">http://www.mycoolwebsite.net/imported_contacts/authorise</a></p>
<p>Pay particular attention to not forget the &#8216;www&#8217; bit if that will be in your URLs!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ross Hawkins</title>
		<link>http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/comment-page-1/#comment-599</link>
		<dc:creator>Ross Hawkins</dc:creator>
		<pubDate>Thu, 10 Jul 2008 05:19:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/#comment-599</guid>
		<description>Nice guide, thanks. To be a real nitpicker, you probably also want to add a line the end of the import method, along the lines of:

@contacts = contacts


Also remember if you&#039;re using VI everything will break.</description>
		<content:encoded><![CDATA[<p>Nice guide, thanks. To be a real nitpicker, you probably also want to add a line the end of the import method, along the lines of:</p>
<p>@contacts = contacts</p>
<p>Also remember if you&#8217;re using VI everything will break.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ttb</title>
		<link>http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/comment-page-1/#comment-586</link>
		<dc:creator>ttb</dc:creator>
		<pubDate>Tue, 01 Jul 2008 15:37:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.theirishpenguin.com/2008/06/25/a-little-help-on-importing-gmail-contacts-using-ruby-on-rails/#comment-586</guid>
		<description>thanks for nice followup article on this</description>
		<content:encoded><![CDATA[<p>thanks for nice followup article on this</p>
]]></content:encoded>
	</item>
</channel>
</rss>

