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 have a issue for facebook apprequests (oauth2, graph)

I sent a app request to my friend B. B logged into facebook and found our request in the app list. B clicked the accept button

B redirected to the facebook canvas page. I want to rediect to our app, not facebook's canvas, is this doable?

thanks

share|improve this question
it is doable, just do a redirect from the canvas to app profile page when user lands from a request. do u know how to handle/delete requests in your canvas page? which language are you using? – bool.dev Oct 3 '11 at 21:11

2 Answers

up vote 1 down vote accepted

you can put a url in the data param

see here http://developers.facebook.com/docs/reference/dialogs/requests/ under properties at bottom.

data Optional, additional data you may pass for tracking. This will be stored as part of the request objects created.

This will get passed back to you and you can use javascript to location.href to the url in the data.

----------Here is a sample i have used in the past

    var thisimg = 'AN_IMG';
    var thisurl = 'A_URL';  
    window.sendrequest = function(){
             FB.ui({ method: 'apprequests', 
             title: 'A request.',
        message: 'Rate Me! Request from: ' +thisname+' ',
        data: ''+thisimg+' '+thisurl+' ',
        filters: ['all'],
        });
        }

---------- Sample from Facebook with data param added.

        var thisimg = 'AN_IMG';
        var thisurl = 'A_URL';
  function sendRequestToManyRecipients() {
    FB.ui({method: 'apprequests',
      message: 'My Great Request',
      data: ''+thisimg+' '+thisurl+' ',
    }, requestCallback);
  }

  function requestCallback(response) {
    // Handle callback here
  }

upon callback you can do a window.top.location.href=''; with the url you passed in data.

NOTE: The default redirect for a request is the canvas, this cannot be changed. After user lands on your canvas you will read the data param from the request and redirect them to your external app.

"i do not see any other way to do this, since requests2.0 does not include option for a redirect uri."

share|improve this answer
1  
doesn't work for me – dexterdeng Oct 3 '11 at 20:53
1  
dex can you post the full code you used? – Shawn E Carter Oct 4 '11 at 0:15
1  
Shawn, thanks, my issue fixed. <script type="text/javascript">top.location.href="http://...";</script> thank you again – dexterdeng Oct 5 '11 at 8:05

As you have already included Facebook javascript SDK in your App and you have writen this code for inviting friend for your App in a script

FB.ui({ method: 'apprequests', redirect_uri: 'APP URL', message: 'My Message' });

This will redirect to App URL without redirecting to Facebook canvas URL.So this will not work even if you use data parameter such as

FB.ui({ method: 'apprequests', data: 'APP URL', message: 'My Message' });

Write this code at your App landing page i.e. in index.php

$requestid=$_GET[request_ids];

if(!empty($requestid)) { echo "<script> window.top.location.href='APP URL' </script>";

}

share|improve this answer

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.