I have the following login script for facebook oauth2 authentication:
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({appId: '<?= YOUR_APP_ID ?>', status: true,
cookie: true, xfbml: true});
FB.Event.subscribe('auth.login', function(response) {
window.location.reload();
});
Can you guys tell me how to redirect the user upon succesful login depending on: 1) Is it the first time the user logs in (where he allows the app to extract data)
2) Is it an existing user