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.

Should hyperlinks in a Facebook app be relative i.e. <a href="profile.php">link</a> or absolute i.e. <a href="http://apps.facebook.com/apptitle/profile.php">link</a> ?

share|improve this question

2 Answers

up vote 2 down vote accepted

Facebook app or not, the same rules apply. So, relative URLs should work.

share|improve this answer
Seems the Facebook example App, Run with Friends, uses relative – Graeme MacFarlane Mar 14 '12 at 11:40

If you use relative, it will load from within your iframe, so you will have to include the signed_request parameter to make sure subsequent pages can decode the sigs to get auth information. Using absolute links causes the chrome to refresh with every page change, which is additional load time on every page.

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.