fbml

fb:multi-friend-selector throws ERROR

Hi, i think something is wrong with my friend-selector. I can select friends an open the invite-dialog. But as soos as i try to send the invition I get: Sorry, your request could not be processed. That happens even I use the code from the docs Code: <div style="padding: 10px;"> <fb:request-form method="post" ncontent="hey" type="sa...

Embed Social RSS in FBML

Hi everyone. Is it possible to embed Social RSS in static FBML? How would I do it if I can? ...

Facebook: Invalid mark up on FBML

I am using the W3C XHTML validator to check my sites and I am getting some errors on pages with FBML. Most of the cause of such errors is the "&" character. Since FBML values and attributes are generated on the fly, I have no way to encode the character properly before displaying it. Question: Is there a way for me to tell Facebook Conn...

FBML limit on Fan pages...

I tried to add 15 tabs to a page of mine, with just images and information, but i could only add 10 FMBL apps and make them on tabs...Any idea whether the FMBL limit is 10 ? Is there any way i can increase that limit ? ...

How to load ajax contents into a div on page load using FBML and FBJS?

I'm developing my first Facebook application in ASP.NET 2.0 and doing a simplest thing, i.e. to show a navigation on top with four hyperlinks where each link targets to another .aspx page. Please if someone can help me doing this using FBML in ASP.NET 2.0. Other wise coming to my question, where i'm struck after trying above thing at my...

Facebook App extended permissions

I am making a FBML facebook application. Currently, when a user visit my application for the first time he is asked to allow his profile details to be shared or not. I want the user to be asked for publish_stream permissions in the same login screen. How can I do this? As far as i know the way to do is redirect the user to a url like: ...

Is there a limit for Facebook FBML Tabs??

Hello. I just created and application for Facebook and added with the help of the FBML 10 tabs, but it doesn't seems to let me add another tab. Is there a limit (10 tabs) or it's just a weird coincidence. Thanks!! ...

Customizing the new facebook widgets

There are new social widgets for facebook which can be included in any site. The problem is that they don't match with my site's color. Can I customize the colors myself using css or some other fbml tool? Is it possible to add more fields to the comments section? Is it possible to fetch profile data using the login widget? I am basically...

getting the url of a facebook tab

Is there a function to dump out the url of the tab? I have share links on tabs that are dumped to twitter/fb/linkedin and would like the links to point back to the url they came from- But to share these affectively I need to share the tab link... i dumped out $_REQUEST vars hoping there would be a URL in there somewhere for the tab b...

Facebook multi-friend-selector always displays email invite section

I managed to get fb:multi-friend-selector working. However after choosing friends and sending invitations to them there is a popup "Optional: also send to email contacts?" displayed which I don't want. According to the documentation at http://developers.facebook.com/docs/reference/fbml/multi-friend-selector there is a email_invite flag ...

API calls using FBJS within FBML page.

Hi, I know that it is possible using an Iframe app, but haven't found any satisfactory solution for FBML pages. Does anyone know if it is possible? ...

Facebook - How to add Like button inside a Static FBML?

Guys, Has anyone here tried to add a Like button on a static FBML (a fan page)??? Not sure if this is possible by simply embedding the Like button plugin on to the static FBML, but I tried the iframe version and it didn't show up... Any ideas how to integrate??? Thx! ...

Saving Profile information in a Facebook App

I am making a facebook app in FBML. I want to know what all information can I store about the user permanently into my database? Also, can I have access to the user's email address of the user after logging into my application. ...

Facebook Markup Language & .NET MVC 2.0

I am creating a .NET MVC (1.0) facebook application using FBML. Everything is working like expected. However, if I simply change the project to reference the System.Web.Mvc 2.0 assembly, the application stops working. No exceptions are thrown (it makes it through the controller class fine) but nothing is rendered on the page? Any ide...

Programmatically control YouTube from Facebook Page App?

Hi, I'm aware of the YouTube API, and of Facebook w/ FBML/XFBML and What I'm looking to achieve is the playing/navigating of a sequence of (20+) videos, to which the user should have direct access (i.e. thumbs/links), so I don't think a playlist would suit the bill. I'd like to avoid embedding 20+ players in various visible/non-visi...

Facebook Like Button on FMBL Tab

Hey there, I'm trying to add an FBML tab in facebook that includes a like button. I want to ask visitors to click the like button before revealing a form. When they click it, the form would display and then they can complete the form and submit it. Is this possible? Any help would be great. Thanks, Howie ...

Facebook Page Static FBML Slideshow

Hi folks, I am trying to create a really simple image slider for a facebook business page, and was wondering if anyone knows of any code snippets to help me accomplish the job? I only need to be able to display a few images and allow the user to slide between them. Any ideas? Thanks so much. Elliott ...

Simple FBJS Ajax Call and Response Help

I'm having trouble getting a very simple FBJS ajax call to work on a facebook application tab. For the purposes of this example, all I want to do is click on a link and load an image into an empty div. Code: <script type="text/javascript"> function do_ajax() { var ajax = new Ajax(); ajax.ondone = function(data) { documen...

making ajax call from static FBML page

I have one FBML static page added as a tag in my facebook page. It is basically a newsletter sign up. I want the page to submit via Ajax to an external website, get the response and show the response message in the facebook tab. IS it possible in this scenario using FBJS. Here is my newsletter html which is used to draw the tab. <di...

Problem with FBJS

<style type="text/css"> .hidden { display: none; } .show { display: block; } </style> <div class="hidden" id="day">day</div> <div class="hidden" id="night">night</div> <script> <!-- day=document.getElementById("day"); night=document.getElementById("night"); var date = new Date(); if (date.getHours() < 8 || date.getHours() >...