Open GoogleCodeExporter opened 9 years ago
Using the last API's version it works for me.
Original comment by marcocal...@gmail.com
on 14 Dec 2011 at 4:38
Hey!
Thanks for your comment!
But the latest version is GraphApi 1.8.1, right?
I´m using this version...
Perhaps can you show me yours login script?
sincerely yours
Original comment by kr...@redtree.de
on 14 Dec 2011 at 4:51
Need help please :(
Original comment by kr...@redtree.de
on 16 Dec 2011 at 8:48
check the way you embedded your swf
embedSWF("<YOUR_SWF_NAME>.swf", "flashContent", "100%", "100%", "10.0",
flashvars, {name:"flashContent"});
{name:"flashContent"} it seems that this part is mandatory now
check also that you use "scope" instead of "perms"
Facebook.login(loginHandler, {scope: "read_stream,publish_stream"});
this worked for me
Original comment by DavidGa...@googlemail.com
on 16 Dec 2011 at 2:44
Hey!
Thank you very much for your comment!!!
Now i get a permission (scope) request!
But the last problem is that i dont become a accestoken with:
var fbSession:FacebookSession = Facebook.getSession();
So i get no info (username, last_name, first_name...) of the user...
Perhaps you have a solution for this too? :D
sincerely yours
Original comment by kr...@redtree.de
on 16 Dec 2011 at 3:42
Hi,
When i clear the browser history, cookies, etc.. the first time my app try to
login, dont get any result or callback. when i refresh the browser everythings
work fine, any help?
Here is my code
Facebook.init( Config.FACEBOOK_APP_ID, onInit );
}
protected function onInit( _result:Object, _fail:Object):void
{
if ( _result )
{
Debug.log( "facebook login success" );
onLogin( );
}
else
{
Debug.log( "facebook login failed on init, try login" );
var opts:Object = { scope: "publish_stream" };
Facebook.login( onLoginEx, opts );
}
}
Original comment by key...@gmail.com
on 16 Dec 2011 at 11:36
Original issue reported on code.google.com by
kr...@redtree.de
on 14 Dec 2011 at 3:37