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 an invite dialog on my page:

<a href="#" onclick="sendRequestToManyRecipients(); return false;" >xx</a>
 <script language="javascript" type="text/javascript">
     FB.init({appId  : 'myappid', status : true, cookie : true, oauth: true});
     function sendRequestToManyRecipients() {
         FB.ui({ method: 'apprequests', message: 'xxx'},requestCallback);
      }
      function requestCallback(response) {
        // Handle callback here
      }
 </script>

When the invited user clicks the invite, he gets linked to the app, but I want the user to get redirected to a page like http://www.facebook.com/pages/xxx/xxx?sk=app_xxxx.

How can I do that?

share|improve this question
stackoverflow.com/questions/5714670/… - look at this – Vijay Oct 21 '11 at 14:16

3 Answers

That's not possible without some custom coding - the requests interface exists to drive traffic to apps on facebook, not to page tabs, there's no way to have Facebook send users to a tab when they accept the request.

You could just implement something on your canvas landing page that redirects users back to a page tab based on the information in the request as a workaround.

share|improve this answer

previous version of the apprequest which is request-form this was possible: How can I include a link in a FB app request?

However current version of apprequest : facebook guys lets only redirect to your app: https://apps.facebook.com/yourapp

@Vihay comments helps this custom workaround to redirect to page.

Hoping next version apprequests, facebook enables redirect to links within the fb app.

share|improve this answer

Agree with previous answers. Facebook will redirect to your app, which is just a Facebook wrapper around a page you can provide. That page can then use a client-side redirect to whatever page you'd like (like what Klout does).

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.