Here is what I want to: I used OAuth 2.0 authorization system. I already registered my application in Facebook, and I have got my application secret keys (i did server side code, but I need more user friendy authorization system).
Based on response from Facebook, how can I get response code from Facebook without reloading the page? In case you didn't understand what I mean take a look on next example:
Example is on this link: http://www.badminton.si/1-turnir-b-kategorije-1-kolo-mbl
How can I then continue to get my access token so I can access my private information (like email)?
IN SHORT:
FB.init({ appId: my_api_key, status: true, cookie: true, xfbml: true }); FB.Event.subscribe('auth.login', function (response) {login();)} FB.Event.subscribe('auth.logout', function (response) {logout();}); FB.getLoginStatus(function (response) {if (response.session) {login();}}); function login() {FB.api('/me', function (response) {alert(response.email)}); ....