I made an app that will allow users to upload one photo/video from localhost (exhibition) to their own wall.
now what I am trying to do is to get the FB login page and after a successful login to redirect to a "please wait..." page that will run the upload code in background. otherwise the user has to wait after logging in without knowing whats happening.
i tried the
"next" => "myurl",
but it doesnt work.
i am using php sdk.
do you have any ideas / references?
Edit:
My code for login dialog:
$login_url = $facebook->getLoginUrl( array( 'scope' => 'photo_upload, publish_stream, share_item', 'next' => 'http://www.google.com') );
header ("Location: $login_url");
I want to redirect this to a preloader html page and then upload using the normal upload code found in my upload.php