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.

How do you make a facebook application which you can search for on facebook and by clicking on it, it redirects you to a different website. An example is if you type in 1-800-Flowers and click on the App - it redirects you to the website http://ww30.1800flowers.com/template.do?id=template4&page=7900&conversionTag=true#flowers_facebook/offer straight away. Is this easy to do? If so, how? Thanks in advance

share|improve this question
Try this: stackoverflow.com/questions/4954899/… – Feren6 Jul 23 '12 at 16:30

1 Answer

You can start by creating a app on Facebook and point it to a page on your website. On the page, add some JS code to pop the user out of Facebook and send them to your homepage: e.g.:

window.top.location = 'http://yourwebsite.com';

However, remember that it's against Facebook Terms to have an app simply redirect to a website. Your website must be Facebook Connected or use Facebook API in some way to enhance the user's experience.

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.