is it possible the I will only load a app-page after a successfull oauth? Can I redirect to different pages if the oauth is successfull or not?
<body>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<div id="fb-root"></div>
<script>
FB.init({
appId: '.....',
status: true,
cookie: true,
xfbml: true,
oauth: true
});
FB.login({
scope: 'email',
});
</script>
thanks a lot.
I’m not sure what you’re trying to do, but this may help you.