<?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: Extending FacebookOAuthGraph Class</title>
	<atom:link href="http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=extending-facebookoauthgraph-class</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/06/extending-facebookoauthgraph-class/comment-page-3/#comment-4392</link>
		<dc:creator>Jozef Chúťka</dc:creator>
		<pubDate>Thu, 20 Jan 2011 16:40:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1854#comment-4392</guid>
		<description>Hi Gopi,
In order to make calls to api you need a token. When you authorize your app in popup, the token is pushed in the last step into callback.html. Now callback.html hast to push it back to your main app (via javascript-simple or LocalConnection-advanced callback). It it succeed with sending the token to the main app, it tries to close itself using javascript window.close() method. Could you somehow debug the issue with IE and send some report where the javascript fails?</description>
		<content:encoded><![CDATA[<p>Hi Gopi,<br />
In order to make calls to api you need a token. When you authorize your app in popup, the token is pushed in the last step into callback.html. Now callback.html hast to push it back to your main app (via javascript-simple or LocalConnection-advanced callback). It it succeed with sending the token to the main app, it tries to close itself using javascript window.close() method. Could you somehow debug the issue with IE and send some report where the javascript fails?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gopi</title>
		<link>http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/comment-page-3/#comment-4390</link>
		<dc:creator>Gopi</dc:creator>
		<pubDate>Thu, 20 Jan 2011 08:32:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1854#comment-4390</guid>
		<description>Hi Jozef Chúťka,

I could post on authenticated user&#039;s friends wall successfully only when the pop-up window (normal callback.html) closed automatically. Firefox and crome browsers are able to close the callback.html after authentication, but Internet explorer unable to close the callback.html automatically.

please suggest !  
I would also like to know the purpose of Advanced callback.html

-Gopi</description>
		<content:encoded><![CDATA[<p>Hi Jozef Chúťka,</p>
<p>I could post on authenticated user&#8217;s friends wall successfully only when the pop-up window (normal callback.html) closed automatically. Firefox and crome browsers are able to close the callback.html after authentication, but Internet explorer unable to close the callback.html automatically.</p>
<p>please suggest !<br />
I would also like to know the purpose of Advanced callback.html</p>
<p>-Gopi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jozef Chúťka</title>
		<link>http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/comment-page-3/#comment-4379</link>
		<dc:creator>Jozef Chúťka</dc:creator>
		<pubDate>Mon, 17 Jan 2011 16:39:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1854#comment-4379</guid>
		<description>mike, you can not access ByteArray without correct crossdomain.xml hosted on facebook domains, please follow:
http://blog.yoz.sk/2010/05/facebook-graph-api-and-oauth-2-and-flash/#comment-2450 or other comments and responses containing &quot;profile picture&quot;</description>
		<content:encoded><![CDATA[<p>mike, you can not access ByteArray without correct crossdomain.xml hosted on facebook domains, please follow:<br />
<a href="http://blog.yoz.sk/2010/05/facebook-graph-api-and-oauth-2-and-flash/#comment-2450" rel="nofollow">http://blog.yoz.sk/2010/05/facebook-graph-api-and-oauth-2-and-flash/#comment-2450</a> or other comments and responses containing &#8220;profile picture&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mike</title>
		<link>http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/comment-page-3/#comment-4371</link>
		<dc:creator>mike</dc:creator>
		<pubDate>Sat, 15 Jan 2011 11:58:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1854#comment-4371</guid>
		<description>Hi - I&#039;m able to authorize in my flash only app using your great code - dumb question tho - I have this return object where I can get first name , last name like so

var obj:Object = event.currentTarget.me as Object;
_firstname = obj.first_name;
_lastname = obj.last_name;

I&#039;m confused about how to get access to the profile pic of the user tho - when i try the callComplete portion of the code - a status update gets posted but the result is event.rawdata is not recognized as a ByteArray - any idea what I might be doing wrong?

Cheers</description>
		<content:encoded><![CDATA[<p>Hi &#8211; I&#8217;m able to authorize in my flash only app using your great code &#8211; dumb question tho &#8211; I have this return object where I can get first name , last name like so</p>
<p>var obj:Object = event.currentTarget.me as Object;<br />
_firstname = obj.first_name;<br />
_lastname = obj.last_name;</p>
<p>I&#8217;m confused about how to get access to the profile pic of the user tho &#8211; when i try the callComplete portion of the code &#8211; a status update gets posted but the result is event.rawdata is not recognized as a ByteArray &#8211; any idea what I might be doing wrong?</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jozef Chúťka</title>
		<link>http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/comment-page-3/#comment-4332</link>
		<dc:creator>Jozef Chúťka</dc:creator>
		<pubDate>Mon, 10 Jan 2011 12:49:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1854#comment-4332</guid>
		<description>@Ben, 
I can see you defined .swf script access for crossdomain for both .swf files, as well as localconnection name with underscore correctly. Popup opens and closes by itself (however I am not able to find close command in javascript - maybe injected from callback.swf?) ... I can also see the redirect from facebook to 
http://www.monstromatic.com/bin/callback.html#access_token=***********&amp;expires_in=4560
so window.location.hash should contain correct info... I believe there is some issue with handling hash value in your flash. You should debug that</description>
		<content:encoded><![CDATA[<p>@Ben,<br />
I can see you defined .swf script access for crossdomain for both .swf files, as well as localconnection name with underscore correctly. Popup opens and closes by itself (however I am not able to find close command in javascript &#8211; maybe injected from callback.swf?) &#8230; I can also see the redirect from facebook to<br />
<a href="http://www.monstromatic.com/bin/callback.html#access_token=***********&#038;expires_in=4560" rel="nofollow">http://www.monstromatic.com/bin/callback.html#access_token=***********&#038;expires_in=4560</a><br />
so window.location.hash should contain correct info&#8230; I believe there is some issue with handling hash value in your flash. You should debug that</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/comment-page-3/#comment-4326</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 08 Jan 2011 21:37:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1854#comment-4326</guid>
		<description>Here is the link:
http://www.monstromatic.com/bin/index.html</description>
		<content:encoded><![CDATA[<p>Here is the link:<br />
<a href="http://www.monstromatic.com/bin/index.html" rel="nofollow">http://www.monstromatic.com/bin/index.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/comment-page-3/#comment-4325</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Sat, 08 Jan 2011 21:31:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1854#comment-4325</guid>
		<description>Hello Jozef

Thanks for your great blog!
Here is my problem :

The html page that wraps the swf is in domainA.com and declared in the facebook app, but the swf is in domainB.com (caching server, cdn with transparent redirection). When I try to connect to facebook, the auhorisation fails. Any idea?

P.S. When the html and the swf are in the same domain, everything worksfine...

Thanks for your help!</description>
		<content:encoded><![CDATA[<p>Hello Jozef</p>
<p>Thanks for your great blog!<br />
Here is my problem :</p>
<p>The html page that wraps the swf is in domainA.com and declared in the facebook app, but the swf is in domainB.com (caching server, cdn with transparent redirection). When I try to connect to facebook, the auhorisation fails. Any idea?</p>
<p>P.S. When the html and the swf are in the same domain, everything worksfine&#8230;</p>
<p>Thanks for your help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jozef Chúťka</title>
		<link>http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/comment-page-3/#comment-4254</link>
		<dc:creator>Jozef Chúťka</dc:creator>
		<pubDate>Mon, 20 Dec 2010 11:38:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1854#comment-4254</guid>
		<description>Hi PVieira,
check out
http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/#comment-2336
and other material over this article with &quot;target_id&quot;</description>
		<content:encoded><![CDATA[<p>Hi PVieira,<br />
check out<br />
<a href="http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/#comment-2336" rel="nofollow">http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/#comment-2336</a><br />
and other material over this article with &#8220;target_id&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PVieira</title>
		<link>http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/comment-page-3/#comment-4253</link>
		<dc:creator>PVieira</dc:creator>
		<pubDate>Mon, 20 Dec 2010 11:35:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1854#comment-4253</guid>
		<description>Hi again Jeff. 

I&#039;m thinking about this method to post to wall and i was wondering: it&#039;s only possible to post to the current user wall? Is not possible to post to his wall and to some page (for example the app profile page)?

Cheers!</description>
		<content:encoded><![CDATA[<p>Hi again Jeff. </p>
<p>I&#8217;m thinking about this method to post to wall and i was wondering: it&#8217;s only possible to post to the current user wall? Is not possible to post to his wall and to some page (for example the app profile page)?</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jozef Chúťka</title>
		<link>http://blog.yoz.sk/2010/06/extending-facebookoauthgraph-class/comment-page-3/#comment-4244</link>
		<dc:creator>Jozef Chúťka</dc:creator>
		<pubDate>Mon, 20 Dec 2010 08:51:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.yoz.sk/?p=1854#comment-4244</guid>
		<description>MauroX, it really seems like there is an restrictive crossdomain on:
http://api-video.facebook.com/crossdomain.xml
so you will only be able to test it when running debug build from your local... what you should do is to try everything works there, and than make server side proxy using php or something you are more familiar with:
http://efreedom.com/Question/1-3257729/Uploading-Video-Old-Facebook-REST-API</description>
		<content:encoded><![CDATA[<p>MauroX, it really seems like there is an restrictive crossdomain on:<br />
<a href="http://api-video.facebook.com/crossdomain.xml" rel="nofollow">http://api-video.facebook.com/crossdomain.xml</a><br />
so you will only be able to test it when running debug build from your local&#8230; what you should do is to try everything works there, and than make server side proxy using php or something you are more familiar with:<br />
<a href="http://efreedom.com/Question/1-3257729/Uploading-Video-Old-Facebook-REST-API" rel="nofollow">http://efreedom.com/Question/1-3257729/Uploading-Video-Old-Facebook-REST-API</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

