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 scenario where I have a tab application that will be deployed to various fan pages.

I am looking for a way to get build the redirect url from the signed request so I know which fan page to redirect to once the user has authorized the app.

Most of the examples show this as a static url in the tab app, but in my instance I am not sure which fan page is providing the link to the tab.

Hope that is clear.

Rabbit

share|improve this question

1 Answer

In your tab app you get Signed request.

So you have two things you need to build your redirectURL.

1) PageId

2) AppId

based on these two values and facebook vanity URL you can create redirectURL as follows: https://www.facebook.com/profile.php?id=PAGEID_HERE&sk=app_APPID_HERE replace PAGEID_HERE with pageid and replace APPID_HERE with AppId and you are done.

you can set this URL as ReturnURL property of you app.

app.returnURL= Path generated above.

if(app.autherize) or whatever

I hope this will help.

Regards

Ims

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.