Within my application I ask users for their email permission:
<fb:login-button perms="email">Give me your email</fb:login-button>
The popup open's and the user allows it.
Now I want to redirect the user to a spcial link/page where I have some code which get's the email from facebook. How to do that?
This is what I have as JS code so for, it's to login:
FB.Event.subscribe('auth.login', function() {
window.location.reload();
});
I tried "auth.sessionChange" and "auth.statusChange" events, but they also fire on login/logut.
All I need are own callback functions for each FB button I think!?
thx