Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
can you post the code with longer length that includes more details you did? – Abby Chau Yu Hoi May 30 '12 at 9:01
yes, sorry. does it make any sens? i updated the initial post. – bboy May 30 '12 at 11:20

2 Answers

Try setting the redirect_uri like this:

$facebook->getLoginUrl(array(
    'scope'        => 'photo_upload, publish_stream, share_item',
    'redirect_uri' => 'http://your.preloadpage'
));
share|improve this answer
thank you guys! I will give it a try and get back to you! thanks! – bboy Jun 3 '12 at 14:16
@bboy is it working? – Luca S. Jun 6 '12 at 13:50

here is an example

$login_url = $facebook->getLoginUrl(array(
'scope' => 'photo_upload, publish_stream, share_item',
'fbconnect' => 1,
'canvas' => 0,
'next' => 'http://localhost/demo/facebook/index.php',
'redirect_uri' => 'http://localhost/demo/facebook/index.php',
));

param "next" indicates the url to be redirected after clicking a "finish"

param "redirect_uri" indicates the url to be redirected after the progressing to the next page.

and the hosts of redirect_uri and next are ought to be yours ,set and added in the facebook app settings.

share|improve this answer
Thank you Abby! what about canvas and fbconnect? I will give it a try and get back here! Thanks! – bboy Jun 3 '12 at 14:16
canvas: set this to ’1′ for canvas application. Otherwise, ignore it. fbconnect: set this to ’0′ for canvas application. Otherwise, ignore it. (The default is 1 which is for fbconnect app.) – Abby Chau Yu Hoi Jun 4 '12 at 6:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.