It's a twisted question, I hope to explain good.
I've followed this tutorial
http://permadi.com/blog/2011/02/using-facebook-graph-api-in-flash-as3-1-5/
Where you can try the results here
www.permadi.com/tutorial/as3-open-graph-example-basic-1.5/index.html?test
All works perfect, but I applied a little modification to the source code.
Considering that in my site the user not necessarily will log-in with his facebook account, but he can do this with the data of manual registration, I thought that is useless initializate the facebook app when the site starts. I want to inizialize it only after clicked on the login button. And this is the result:
http://digilander.libero.it/American_horizon/index.html
If you try it without having already allowed the app, you will notice a little bug. After allowed the app throght the classic Auth dialog window, the site don't log automatically to facebook. For do that, you've to refresh the page and click on login-in button again..
In the AS3 code, I've simple applied this variation:
original code:
Facebook.init(APP_ID, handleLogin, {channelUrl : 'http://digilander.libero.it/American_horizon/index.html'});
loginButton.addEventListener(MouseEvent.CLICK, onLoginButtonClicked);
function onLoginButtonClicked(event:MouseEvent):void
{
[...]
modified code
loginButton.addEventListener(MouseEvent.CLICK, onLoginButtonClicked);
function onLoginButtonClicked(event:MouseEvent):void
{
Facebook.init(APP_ID, handleLogin, {channelUrl : 'http://digilander.libero.it/American_horizon/index.html'});
[...]