fbml

Facebook Fan Page Tweak

Hello Friends, I need to ask a question about facebook fan page. I need to create a page which user can only see if they Likes the page otherwise blury view of the page. The thing I want is already created by some one and I don't know how to copy that. [url redacted -msw] Can you write FBML for this here? Umair ...

Retrieving the comment count in from a Facebook comments box

I use on my website, but I can't figure out how to retrieve the comment count from a comment box with a specific XID. I've tried intercepting all new comments with the following code: FB.Event.subscribe('comments.add', function(response) { alert("Comment was added."); }); I never receive the alert though. Any ideas? I just need the...

Facebook connect - login and grant permission at the same time

Hi, I've been able to get my app to login and grant permissions after, but I woul dnow like to do it at the same time The login button that is being generated is using the following code <fb:login-button perms="publish_stream"></fb:login-button> Any ideas why its not picking up on the perms? Thanks, Ian ...

Facebook App FBML, fb:friend-selector get friend userid.

Hello everyone, i am trying to get the current logged in user's friends, they should select one friend using the form below and then submit it to the same page. The script is suppose to get the friend's userid (only one) and add it to the database. The script is working fine but its not posting the right ID (Wrong ID $_POST['friend_sele...

Nesting fb:name within fb:tab tags on facebook

hi, I'm trying to create a tabbed navigation interface of a user's friends on Facebook. I want each tab to display the name of the friend, with a link defined by me. I'm using RoR's Facebooker. My first try was: <%= fb_tab_item fb_name(123), some_link %> Unfortunately Facebook renders the name tag as an escaped sequence: <fb:tab-ite...

Trying to load twitter profile widget for a welcome FBML page in facebook

I would be happy to send anyone the code I have... It all works fine as a webpage but then in Facebook all of the page loads and no errors show but the twitter profile widget does not appear. If you want to take a look at the FB page as is click the link. On the left side under twitter updates is where the code is pasted. Thanks http://w...

Is there a hook for denied facebook app requests?

i'm trying to design a module that lets people on my site invite their friends from FB. Handling accepted requests is easy. But i need to know if there's some way i can know if someone rejected/ignored it. Any ideas? ...

What are the ways a facebook application can communicate with a user?

I am a graphic designer who is currently designing a facebook application. I wish to know the various ways that a facebook application can communicate with users of my application, and the limitations of those methods of communication. e.g wall posts, emails etc ...

Facebook Connect <fb:login-button> No Longer Firing Callback (As of today)

Hi All, Came into the office today to do some more work on my nearly completed Facebook Connect website application. And i have discovered for some reason, the "onlogin" event of the fb:login button FBML control is no longer getting fired!!?! To anyone else that has a Facebook Connect FBML app (and using the JavaScript API for authen...

'The page you requested was not found' after finish to invite users on facebook application

Hi, I tried create a invitation function on iFrame facebook application, but i have errors when submit it, so when user done invite a person, then it should redirect to action url that we set, but the page is not go to the right url, it says "The page you requested was not found." here is my code that i use : <fb:serverFbml> <scr...

Facebook Base-Layout .css?

Hi there, i was wondering if I can simulate the Facebook FBML render on my local maschine. For the first step the css rendering for h1, p, a etc. would be enough. thanks ...

facebook login button

Using facebook's fbml login button is it possible to use custom login/logout images?? ...

Hotlinked images and FBML

I am creating an custom facebook page using FBML. I use custom data for my content in the share buttons. I am having trouble with the thumbnail images. I have not been able to determine the problem. I will hotlink an image from one site, the thumbnail won't work. I will hotlink an image from another site and the thumbnail works. I try ...

Facebook application with video uploading capabilities

I need to upload video files through Facebook application and later visualize all uploaded videos so that people can vote for a video they like. I searched and read some articles, but I still have questions that are not completely clear for me: Is it better to use iframe or FBML If I use iframe is it possible to use input type="file" a...

anybody knows how to close (hide) fbml-dialog using new facebook javascript sdk?

i've wasted 4 hrs today and several hairs trying to solve this issue but failed. we use facebook.connect to auth users on our site and perform various actions. one of this actions should trigger fbml:dialog, i decided to use new js sdk. here's function i use: function popupModalWindow(cat) { var oldSize = FB.UIServer.Methods["fbml.dial...

Why does my Facebook Like button create a brand new Facebook page?

I'm trying to integrate Facebook into a site I'm developing, I have created a Facebook Page for the business & a Facebook app too - I am very confused with the documentation & terminology that Facebook uses. I am using FBML to add a Recommend button to the footer of my site so that users can recommend that particular page but when I cli...

facebook ignore javascript events

hi, I have a fbml app with a contact form and inputs like this one: <input type="text" tabindex="1" value="Name" name="name" id="name" onfocus="if(this.value=='Name')this.value='';" onblur="if(this.value=='')this.value='Name';" /><br /> Does anybody know why facebook ignore this javascript: onfocus="if(this.value=='Name')this.value=...

facebook canvas pages, fbml and javascript

I have a game that i have built for facebook in flash, but I have built a wrapper for it in html. I would like a JavaScript league table that once the user completed the game their score is sent to the db The thing I would like- as soon as the game finishes the leage table is updated through javascript calls.. is this possible on fb ca...

facebook tab fbml and dynamic content

Per the new profile/fan page tab rule that eliminates the iFrame option, is there a way to dynamically generate content for a given tab? I've seen methods that wrap a canvas app (but requires a user to click to load content), but I want to show updated content thats managed on my servers. I thought you could also update the FBML using th...

Render FBML in Facebook Dialog Popup

I'm working on a facebook page where there is a table of profile images. Onclick for each of these images, I'm using a facebook dialog to show the name, a picture and a description in a popup. The name is stored in the <img> name attribute. The description is stored in the <img> title attribute. The img src is stored in the <img> src at...