New Facebook app - FBML or iFrame? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:19:27Z http://stackoverflow.com/feeds/question/219804 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/219804/new-facebook-app-fbml-or-iframe 20 New Facebook app - FBML or iFrame? Cameron Booth 2008-10-20T20:32:48Z 2009-12-13T05:40:15Z <p>We're starting a new facebook app (incidentally in Rails), and are faced with the decision to use FBML or to use IFrames. It seems like in the past the consensus generally was that FBML was the better way to go, as it made things more inherently Facebook looking, however it seems now like things on the iFrame side are starting to improve, with one of their main engineers saying we <a href="http://www.ccheever.com/blog/?p=10" rel="nofollow">should use iframes</a></p> <p>So I'm wondering what have people found to work best. What benefits and drawbacks have you seen with either the iFrame approach, or the FBML approach.</p> <p>Or, are people using a mix of both. I see there's a way you can override the setting in specific places.</p> <p>Thanks Stack Overflowers!</p> http://stackoverflow.com/questions/219804/new-facebook-app-fbml-or-iframe/229260#229260 6 Answer by Leigh Caldwell for New Facebook app - FBML or iFrame? Leigh Caldwell 2008-10-23T10:33:29Z 2008-10-23T10:33:29Z <p>I find FBML easier if you want to make your app look just like Facebook with less effort in duplicating their styling.</p> <p>Iframes of course give you more control.</p> <p>So which do you prefer - quicker development or more precise control over the results?</p> http://stackoverflow.com/questions/219804/new-facebook-app-fbml-or-iframe/229270#229270 2 Answer by Alon for New Facebook app - FBML or iFrame? Alon 2008-10-23T10:38:17Z 2008-10-23T10:38:17Z <p>Well, I'll have to agree with the poster above me and say that FBML makes it much easier to create a facebook-ish style to your application without having to rip off CSS pages ;}</p> <p>Its also quite great working with the fb tags instead of creating makeshift solutions at times.</p> <p>Both ways are good, but FBML tends to contribute to more effective and efficient development for Facebook. So, in the general case, I would probably go ahead and use FBML, unless you have some specific need for IFrame fine tuning.</p> http://stackoverflow.com/questions/219804/new-facebook-app-fbml-or-iframe/229284#229284 24 Answer by jmans for New Facebook app - FBML or iFrame? jmans 2008-10-23T10:43:34Z 2008-11-29T01:11:51Z <p>I have been developing a facebook app for the past several months, and recently switched our canvas page from FBML to an IFrame. The main reason for doing so has to do with these posts and features:</p> <p><a href="http://tinyurl.com/47j42l" rel="nofollow">http://tinyurl.com/47j42l</a></p> <p><a href="http://tinyurl.com/5uwbnp" rel="nofollow">http://tinyurl.com/5uwbnp</a></p> <p>Basically, you can now embed FBML into an IFrame canvas using the XFBML features that were implemented to support Facebook Connect. IFrames may have performance improvements (although those are probably trashed by the client-side requests required by XFBML, which are a little tedious to set up at first), but the main advantages for me are:</p> <p>1) The ability to use jQuery or any other stuff I want.</p> <p>2) Useful, relevant ads from adsense, since I no longer have to embed the adsense javascript in its own IFrame.</p> <p>Once I made this switch, I realized that I was able to get all the facebook data I needed through the API, and take advantage of memcached to improve performance. So, now my canvas is just plain old HTML, without any XFBML.</p> <p>Hope this helps.</p> http://stackoverflow.com/questions/219804/new-facebook-app-fbml-or-iframe/398559#398559 1 Answer by Nick Gerakines for New Facebook app - FBML or iFrame? Nick Gerakines 2008-12-29T20:22:01Z 2008-12-29T20:22:01Z <p>Using FBML gives you much deeper integration with Facebook as a whole.</p> http://stackoverflow.com/questions/219804/new-facebook-app-fbml-or-iframe/1895640#1895640 0 Answer by Glenn for New Facebook app - FBML or iFrame? Glenn 2009-12-13T05:33:30Z 2009-12-13T05:33:30Z <p>Check out some codes for using Iframes, drop down menu, invite friends + a tutorial on how to integrate an external page on to a tab of your facebook business page.</p> <p><a href="http://www.facebook.com/webwhispers?v=app%5F6009294086" rel="nofollow">http://www.facebook.com/webwhispers?v=app%5F6009294086</a> (become a fan to check it out - comments all welcome)</p> http://stackoverflow.com/questions/219804/new-facebook-app-fbml-or-iframe/1895648#1895648 0 Answer by Faruz for New Facebook app - FBML or iFrame? Faruz 2009-12-13T05:40:15Z 2009-12-13T05:40:15Z <p>To sum up: FBML makes better and more integrated applications. IFrame is easier to use and gives you more freedom with development (If your application is already sort of completed and you just want to add a "facebook leg" to it - it's very easy.</p>