<?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: Facebook Extended Permissions With Authorization by Overriding Class in swc</title>
	<atom:link href="http://blog.yoz.sk/2010/01/facebook-extended-permissions-with-authorization-by-overriding-class-in-swc/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.yoz.sk/2010/01/facebook-extended-permissions-with-authorization-by-overriding-class-in-swc/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=facebook-extended-permissions-with-authorization-by-overriding-class-in-swc</link>
	<description>My life, my work</description>
	<lastBuildDate>Thu, 02 Feb 2012 13:37:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jozef Chúťka</title>
		<link>http://blog.yoz.sk/2010/01/facebook-extended-permissions-with-authorization-by-overriding-class-in-swc/comment-page-1/#comment-2815</link>
		<dc:creator>Jozef Chúťka</dc:creator>
		<pubDate>Thu, 12 Aug 2010 12:05:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=901#comment-2815</guid>
		<description>hi @edap,
you can join all permissions with &quot;,&quot; eg: &quot;publish_stream,email&quot; however this older article use facebook old rest api, I strongly recommend to use new graph api http://blog.yoz.sk/facebookoauthgraph/</description>
		<content:encoded><![CDATA[<p>hi @edap,<br />
you can join all permissions with &#8220;,&#8221; eg: &#8220;publish_stream,email&#8221; however this older article use facebook old rest api, I strongly recommend to use new graph api <a href="http://blog.yoz.sk/facebookoauthgraph/" rel="nofollow">http://blog.yoz.sk/facebookoauthgraph/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: edap</title>
		<link>http://blog.yoz.sk/2010/01/facebook-extended-permissions-with-authorization-by-overriding-class-in-swc/comment-page-1/#comment-2814</link>
		<dc:creator>edap</dc:creator>
		<pubDate>Thu, 12 Aug 2010 11:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=901#comment-2814</guid>
		<description>great tutorial!
but what if I want require more than one permission?
publish_strem, email ecc...?</description>
		<content:encoded><![CDATA[<p>great tutorial!<br />
but what if I want require more than one permission?<br />
publish_strem, email ecc&#8230;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jozef Chúťka</title>
		<link>http://blog.yoz.sk/2010/01/facebook-extended-permissions-with-authorization-by-overriding-class-in-swc/comment-page-1/#comment-2644</link>
		<dc:creator>Jozef Chúťka</dc:creator>
		<pubDate>Tue, 27 Jul 2010 07:29:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=901#comment-2644</guid>
		<description>@Greg, thanks for your solution</description>
		<content:encoded><![CDATA[<p>@Greg, thanks for your solution</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Greg Steimann</title>
		<link>http://blog.yoz.sk/2010/01/facebook-extended-permissions-with-authorization-by-overriding-class-in-swc/comment-page-1/#comment-2640</link>
		<dc:creator>Greg Steimann</dc:creator>
		<pubDate>Mon, 26 Jul 2010 23:43:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=901#comment-2640</guid>
		<description>Thanks for this! It&#039;s really helpful! Though I noticed Facebook prompting me for &quot;Invalid Next Url&quot; after login. So I changed your code to include a &quot;Next URL&quot; in the variables and its been smooth sailing! Thanks again.

Here&#039;s my modified code for those interested (Note the addition of &#039;variables.next = &quot;http://www.facebook.com/connect/login_success.html&quot;&#039;):

		protected function onLogin(p_event:FacebookEvent):void {
			p_event.target.removeEventListener(FacebookEvent.COMPLETE, onLogin);
			
			if (p_event.success) {
				_auth_token = (p_event.data as StringResultData).value;
				
				//now that we have an auth_token we need the user to login with it
				var request:URLRequest = new URLRequest(login_url);
				var variables:URLVariables = new URLVariables();
				
				variables.req_perms = &#039;publish_stream&#039;;
				variables.api_key = api_key;
				variables.v = api_version;
				variables.auth_token = _auth_token;
				variables.fbconnect = &quot;true&quot;;
				variables.connect_display = &quot;page&quot;;
				variables.next = &quot;http://www.facebook.com/connect/login_success.html&quot;
				request.data = variables;
				navigateToURL(request, &quot;_blank&quot;);
				
				_waiting_for_login = true;
				dispatchEvent(new FacebookEvent(FacebookEvent.WAITING_FOR_LOGIN));
			} else {
				onConnectionError(p_event.error);
			}
		}</description>
		<content:encoded><![CDATA[<p>Thanks for this! It&#8217;s really helpful! Though I noticed Facebook prompting me for &#8220;Invalid Next Url&#8221; after login. So I changed your code to include a &#8220;Next URL&#8221; in the variables and its been smooth sailing! Thanks again.</p>
<p>Here&#8217;s my modified code for those interested (Note the addition of &#8216;variables.next = &#8220;http://www.facebook.com/connect/login_success.html&#8221;&#8216;):</p>
<p>		protected function onLogin(p_event:FacebookEvent):void {<br />
			p_event.target.removeEventListener(FacebookEvent.COMPLETE, onLogin);</p>
<p>			if (p_event.success) {<br />
				_auth_token = (p_event.data as StringResultData).value;</p>
<p>				//now that we have an auth_token we need the user to login with it<br />
				var request:URLRequest = new URLRequest(login_url);<br />
				var variables:URLVariables = new URLVariables();</p>
<p>				variables.req_perms = &#8216;publish_stream&#8217;;<br />
				variables.api_key = api_key;<br />
				variables.v = api_version;<br />
				variables.auth_token = _auth_token;<br />
				variables.fbconnect = &#8220;true&#8221;;<br />
				variables.connect_display = &#8220;page&#8221;;<br />
				variables.next = &#8220;http://www.facebook.com/connect/login_success.html&#8221;<br />
				request.data = variables;<br />
				navigateToURL(request, &#8220;_blank&#8221;);</p>
<p>				_waiting_for_login = true;<br />
				dispatchEvent(new FacebookEvent(FacebookEvent.WAITING_FOR_LOGIN));<br />
			} else {<br />
				onConnectionError(p_event.error);<br />
			}<br />
		}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jozef Chúťka</title>
		<link>http://blog.yoz.sk/2010/01/facebook-extended-permissions-with-authorization-by-overriding-class-in-swc/comment-page-1/#comment-2446</link>
		<dc:creator>Jozef Chúťka</dc:creator>
		<pubDate>Wed, 07 Jul 2010 08:04:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=901#comment-2446</guid>
		<description>@Matt you can use DesktopSession with your live app, but if it is in iframe the flow is different. However this still works, I STRONGLY suggest to switch to the new Graph API, new permissions. please read:
http://blog.yoz.sk/2010/05/facebook-graph-api-and-oauth-2-and-flash/</description>
		<content:encoded><![CDATA[<p>@Matt you can use DesktopSession with your live app, but if it is in iframe the flow is different. However this still works, I STRONGLY suggest to switch to the new Graph API, new permissions. please read:<br />
<a href="http://blog.yoz.sk/2010/05/facebook-graph-api-and-oauth-2-and-flash/" rel="nofollow">http://blog.yoz.sk/2010/05/facebook-graph-api-and-oauth-2-and-flash/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matt</title>
		<link>http://blog.yoz.sk/2010/01/facebook-extended-permissions-with-authorization-by-overriding-class-in-swc/comment-page-1/#comment-2442</link>
		<dc:creator>Matt</dc:creator>
		<pubDate>Tue, 06 Jul 2010 11:27:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=901#comment-2442</guid>
		<description>I&#039;ve got a question.. Is it possible to use this approach for a Websession too? It works for me at a Desktopsession but after publishing to my server it wont ask my extended permissions.

Thanks
Matt</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got a question.. Is it possible to use this approach for a Websession too? It works for me at a Desktopsession but after publishing to my server it wont ask my extended permissions.</p>
<p>Thanks<br />
Matt</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Facebook Actionscript API und Extended Permissions / crusy.net</title>
		<link>http://blog.yoz.sk/2010/01/facebook-extended-permissions-with-authorization-by-overriding-class-in-swc/comment-page-1/#comment-1966</link>
		<dc:creator>Facebook Actionscript API und Extended Permissions / crusy.net</dc:creator>
		<pubDate>Fri, 21 May 2010 08:00:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=901#comment-1966</guid>
		<description>[...] Quelle, ich musste aber zwei Parameter entfernen, um es zum Laufen zu kriegen. [...]</description>
		<content:encoded><![CDATA[<p>[...] Quelle, ich musste aber zwei Parameter entfernen, um es zum Laufen zu kriegen. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sharedtut</title>
		<link>http://blog.yoz.sk/2010/01/facebook-extended-permissions-with-authorization-by-overriding-class-in-swc/comment-page-1/#comment-483</link>
		<dc:creator>Sharedtut</dc:creator>
		<pubDate>Wed, 03 Feb 2010 14:16:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=901#comment-483</guid>
		<description>Great tutorial, thank you for putting all of this information together.</description>
		<content:encoded><![CDATA[<p>Great tutorial, thank you for putting all of this information together.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Elegant Facebook Login For Desktop Application at Jozef Chúťka&#39;s blog</title>
		<link>http://blog.yoz.sk/2010/01/facebook-extended-permissions-with-authorization-by-overriding-class-in-swc/comment-page-1/#comment-380</link>
		<dc:creator>Elegant Facebook Login For Desktop Application at Jozef Chúťka&#39;s blog</dc:creator>
		<pubDate>Fri, 22 Jan 2010 11:30:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=901#comment-380</guid>
		<description>[...] post connects my 3 previous posts: Flex IFrame – Web browser in flash, FacebookLogger and Facebook Extended Permissions With Authorization by Overriding Class in swc in order to create elegant solution for facebook connect with your desktop application (means [...]</description>
		<content:encoded><![CDATA[<p>[...] post connects my 3 previous posts: Flex IFrame – Web browser in flash, FacebookLogger and Facebook Extended Permissions With Authorization by Overriding Class in swc in order to create elegant solution for facebook connect with your desktop application (means [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

