<?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: Integration of Facebook Connect With ASP.NET MVC</title>
	<atom:link href="http://singulartechnologies.com/integration-of-facebook-connect-with-asp-net-mvc/feed" rel="self" type="application/rss+xml" />
	<link>http://singulartechnologies.com/integration-of-facebook-connect-with-asp-net-mvc#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed</link>
	<description>The Simple Solution</description>
	<lastBuildDate>Mon, 19 Apr 2010 18:14:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ahmad Barirani</title>
		<link>http://singulartechnologies.com/integration-of-facebook-connect-with-asp-net-mvc/comment-page-1#comment-179</link>
		<dc:creator>Ahmad Barirani</dc:creator>
		<pubDate>Fri, 06 Nov 2009 00:45:02 +0000</pubDate>
		<guid isPermaLink="false">http://singulartechnologies.com/?p=319#comment-179</guid>
		<description>Cookie handling should be done in your Home/Index action which is the action for http://www.yousite.com. When user authorizes your application, the login window closes and your homepage refreshes (you must have fbconnect.js). This is when cookie handling code is to be called.</description>
		<content:encoded><![CDATA[<p>Cookie handling should be done in your Home/Index action which is the action for <a href="http://www.yousite.com" rel="nofollow">http://www.yousite.com</a>. When user authorizes your application, the login window closes and your homepage refreshes (you must have fbconnect.js). This is when cookie handling code is to be called.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anup</title>
		<link>http://singulartechnologies.com/integration-of-facebook-connect-with-asp-net-mvc/comment-page-1#comment-177</link>
		<dc:creator>Anup</dc:creator>
		<pubDate>Thu, 05 Nov 2009 23:54:54 +0000</pubDate>
		<guid isPermaLink="false">http://singulartechnologies.com/?p=319#comment-177</guid>
		<description>Yes, so after the login goes away I am signed in. When I go to www.facebook.com it automatically takes it to my home page.

Out of curiosity, where exactly would you put the Cookie handling code?

My guess is that if I was handling cookies incorrectly, it would show up on subsequent refreshes.
If there anything I need to do to change the login button after I log in?

Once logged in, if I click the fb Login button again, it just refreshes my page which also means that according to it I am already logged in.

Any help would be very appreciated.

Thank You,
Anup</description>
		<content:encoded><![CDATA[<p>Yes, so after the login goes away I am signed in. When I go to <a href="http://www.facebook.com" rel="nofollow">http://www.facebook.com</a> it automatically takes it to my home page.</p>
<p>Out of curiosity, where exactly would you put the Cookie handling code?</p>
<p>My guess is that if I was handling cookies incorrectly, it would show up on subsequent refreshes.<br />
If there anything I need to do to change the login button after I log in?</p>
<p>Once logged in, if I click the fb Login button again, it just refreshes my page which also means that according to it I am already logged in.</p>
<p>Any help would be very appreciated.</p>
<p>Thank You,<br />
Anup</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahmad Barirani</title>
		<link>http://singulartechnologies.com/integration-of-facebook-connect-with-asp-net-mvc/comment-page-1#comment-172</link>
		<dc:creator>Ahmad Barirani</dc:creator>
		<pubDate>Thu, 05 Nov 2009 15:50:19 +0000</pubDate>
		<guid isPermaLink="false">http://singulartechnologies.com/?p=319#comment-172</guid>
		<description>One way to find out if you are truly connected is to go to facebook.com. If you&#039;re logged in, then it means that authentication process worked and that the cookie is there. &lt;a href=&quot;http://wiki.developers.facebook.com/index.php/Verifying_The_Signature&quot; rel=&quot;nofollow&quot;&gt;You need to verify signature&lt;/a&gt;.

If you get null, it most probably means that your code tries to read the cookie before it is set! It might have something to do with how you handle xd_receiver.

I hope it helps.</description>
		<content:encoded><![CDATA[<p>One way to find out if you are truly connected is to go to facebook.com. If you&#8217;re logged in, then it means that authentication process worked and that the cookie is there. <a href="http://wiki.developers.facebook.com/index.php/Verifying_The_Signature" rel="nofollow">You need to verify signature</a>.</p>
<p>If you get null, it most probably means that your code tries to read the cookie before it is set! It might have something to do with how you handle xd_receiver.</p>
<p>I hope it helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anup Marwadi</title>
		<link>http://singulartechnologies.com/integration-of-facebook-connect-with-asp-net-mvc/comment-page-1#comment-170</link>
		<dc:creator>Anup Marwadi</dc:creator>
		<pubDate>Thu, 05 Nov 2009 10:39:24 +0000</pubDate>
		<guid isPermaLink="false">http://singulartechnologies.com/?p=319#comment-170</guid>
		<description>I think you need to setup the base location in the Facebook connect to the base of your website.com

I was facing a similar problem.
however, I am in a situation where i know I get logged in, but the Cookie is null for some reason. No matter what I do, I can not read the cookie information. any help?

thanks!</description>
		<content:encoded><![CDATA[<p>I think you need to setup the base location in the Facebook connect to the base of your website.com</p>
<p>I was facing a similar problem.<br />
however, I am in a situation where i know I get logged in, but the Cookie is null for some reason. No matter what I do, I can not read the cookie information. any help?</p>
<p>thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahmad Barirani</title>
		<link>http://singulartechnologies.com/integration-of-facebook-connect-with-asp-net-mvc/comment-page-1#comment-132</link>
		<dc:creator>Ahmad Barirani</dc:creator>
		<pubDate>Sun, 25 Oct 2009 15:46:12 +0000</pubDate>
		<guid isPermaLink="false">http://singulartechnologies.com/?p=319#comment-132</guid>
		<description>You are most probably missing &lt;a href=&quot;http://singulartechnologies.com/wp-content/uploads/2009/08/fbconnect.js&quot; rel=&quot;nofollow&quot;&gt;fbconnect.js.&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>You are most probably missing <a href="http://singulartechnologies.com/wp-content/uploads/2009/08/fbconnect.js" rel="nofollow">fbconnect.js.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saad Sawari</title>
		<link>http://singulartechnologies.com/integration-of-facebook-connect-with-asp-net-mvc/comment-page-1#comment-131</link>
		<dc:creator>Saad Sawari</dc:creator>
		<pubDate>Sun, 25 Oct 2009 14:44:21 +0000</pubDate>
		<guid isPermaLink="false">http://singulartechnologies.com/?p=319#comment-131</guid>
		<description>Ahmad, I am able connect through facebook connect, but the pop up windows does not close and it renders the site again. I am not sure what did I miss.

- my fbconnect.js is in (&quot;Content/js&quot;) folder
- My controller name is xd_receiverController
- My  xd_receiver view is (&quot;xd_receiver/Index.aspx&quot;)</description>
		<content:encoded><![CDATA[<p>Ahmad, I am able connect through facebook connect, but the pop up windows does not close and it renders the site again. I am not sure what did I miss.</p>
<p>- my fbconnect.js is in (&#8220;Content/js&#8221;) folder<br />
- My controller name is xd_receiverController<br />
- My  xd_receiver view is (&#8220;xd_receiver/Index.aspx&#8221;)</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- www.000webhost.com Analytics Code -->
<script type="text/javascript" src="http://analytics.hosting24.com/count.php"></script>
<noscript><a href="http://www.hosting24.com/"><img src="http://analytics.hosting24.com/count.php" alt="web hosting" /></a></noscript>
<!-- End Of Analytics Code -->
