I use Fb.Login for logging in user in my facebook application. Does exist the posibilities for a redirect_uri parameter? After the succesufull login i would like to redirect user to: https://www.facebook.com/page/app_33229693355?app_data=code, on classic login I user redirect_uri parameter to redirect after login, but here?
FB.login(function(response) {
}, {scope: \'publish_stream, photo_upload, user_birthday\'});
I need this because the next step is to write a picture in php.
Redirect will be fired when the auth status changes to connected. Checkout this FB.Event.subscribe Link for more info.
If you want users data,