fbml

Facebook, FBML: Is it possible to integrate application developed in php sdk with the Fans Page?

Is it possible to integrate application developed in php sdk with the Fans Page (Show application in Fans page)? Please let me know the eg. how to achieve this? ...

get facebook friends list with exclude parameter

How do i get the ID of the users who are already invited, from the facebook API? I want to use it to exclude the user when using <fb:multi-friend-selector condensed="true" style="width: 200px;" /> I have seen examples using $facebook->api_client functions.Where can i get the facebook api class file for PHP which can make the api_cli...

[facebook] <fb:request-form> show as not correct size

my <fb:request-form> show incorrect size (width). here is my code: <fb:serverFbml style="width:600px;"> <script type="text/fbml"> <fb:fbml> <fb:request-form action="<?= BASE_URL; ?>/pages/eid/inc/_send_card.php?ctid=<?= $card_type_id; ?>" target="_top" meth...

Facebook Application: Hidden Content

Hey, I am fairly new to the whole coding game as well teaching myself how to execute the fbml mark up language properly. Currently I am trying to develop an application for revealing hidden content once a facebook user "likes" a specific page. I have looked at several different forums, blogs, as well as applications to get me off to a ni...

How to add developed FB application to the fanspage TAB?

Can any one please let me know how to add developed application to the fanspage TAB? Thanks ...

Html elements don't show up in actual Fan Page canvas?

I tested everything in test console:http://developers.facebook.com/tools/console/ and made sure it works but when I try to embed the code into the FBML editor, I see nothing but the canvas background. Everything but the canvas has images as the background which are hosted in my own server. Here's a snippet of my code below: <div id="pag...

Facebook Connect Bug? (Post-Authorise URL Being Put in Window Instead of OnLogin Callback)

Hi Guys, I have a ASP.NET web site which uses Facebook Connect for authentication - using the JavaScript API and the Facebook Connect FBML Button. Here is the regular flow of events for a "Connect with Facebook" button click, when user isnt logged into Facebook. Dialog is shown requesting user to login Dialog requests permission from...

Facebook Request Form's Skip button doesn't work

The fbml below generates an invite form using a multi-friend-selector. Everything works, except the Skip button. No matter what url I place in the action attribute, the action in the rendered form is always blank. This of course causes the Skip button to 404. <div class="invite"> <fb:serverFbml width="626"> <script type="te...

How do I embed facebook video in static FBML?

Hi, I know it is common that we use the code below to embed a video from you, but how about the facebook itself?? <fb:swf swfbgcolor="000000" imgstyle="border-width:1px; border-color:white;" swfsrc='http://www.youtube.com/v/fZRSpjqzTH8&amp;autoplay=1' imgsrc='http://img.youtube.com/vi/fZ...

How to do any type of info sharing from within facebook tab?

Firstly apologies for the length of this question, and for asking about facebook API ( seemingly one of the most inconsistent api's in the world... ). The Situation: We're producing an FB product 'community' - type page for our client, featuring standard facebook tabs, one of which embeds a flash game. At the end of this game we'd like ...

Facebook social plugins not always showing up

Hi there Im added few weeks ago a like button and comments to my website and for some reason - its not always showing up. http://www.raal.co.il/content/view/58/%D7%A1%D7%99%D7%A4%D7%95%D7%A8%D7%95-%D7%A9%D7%9C-%D7%9C%D7%95%D7%97%D7%9D-%D7%91%D7%99%D7%97%D7%99%D7%93%D7%AA-%D7%93%D7%95%D7%91%D7%93%D7%91%D7%9F heres an example, on the bo...

FBML fb:tabs problems

I got a problem while developing my first facebook api, I am using fb:tabs in my api. But I got some problems. <div> <fb:serverfbml style="width: 650px;"> <script type="text/fbml"> <fb:fbml> <fb:tabs> <fb:tab-item href="http://apps.facebook.com/myapi/invite...

using Facebook Group Page 'Like' in canvas Tab

Hi Facebook recently announced the ability to link a Like button to a Facebook Page. I've created a simple canvas application and successfully added a share button using FBML, how ever, i'm now required to insert a 'Like' button also (i know adding a like button is strange when there's a like button at the top of the page, but thats wh...

Facebook API get user local time without FBML

Hello, I'm writing a Facebook Iframe canvas application using the Facebook Toolkit. There is a certain action where I need to store the date and time for the action, and in the future I want to render it for the user as a date and time like (10:05 AM 20 September 2010). The problem here is that each facebook user has his own local date...

My IFRAME facebook app doesn't work in Opera and IE

It works nicely in FF and Chrome, but in Opera I get timeout error. The loading animation is going and going on but nothing appears. Could you please help me? My deadline comes tommorow :-( Pastebin entire source code: http://pastebin.com/yjFWwqPv ...

Adding a Facebook comments box to my site. It works,but is my technique correct?

I wanted to add a simple comments box to my page, so I did this: Created new application Filled out ONLY 'Site URL' and 'Site Domain' (I overlooked canvas or any other options) Got my appID In my HTML file added the FB namespace included the FB JavaScript file executed fb.init() with my appID and I'm able to use fb:comments on my...

Ways to query Facebook Graph "do I like x?"

Hi, I'm setting up my app to basically do what the FBML 'like' button does: like, unlike and show like count, for objects from the user's "me/home" stream. I have no problem doing any of the above functions, but I'm having a very tough time getting the api to tell me if the user likes the thing already (so I can set the button to 'unlike...

How to send a single request to a particular person in Facebook? (in FBML)

Instead of popup the multiple friend selector, how to do it only for one friend? ...

require_login("publish_stream") doesn't working now ....

because of this issue i cannot ask permission from user i want to publish a messgage to wall and news feed so how to do it using PHP here is my code $appapikey = "XXXXXXXXX"; $appsecret = "XXXXXXXXX"; $facebook = new Facebook($appapikey, $appsecret); $user_id = $facebook->require_login("publish_stream,offline_access"); ?> ...

Facebook API - Accessing a users album and using a photo

If extended permissions have been granted to the app to access a users albums, is it at all possible to display a selector where the user can choose one of their photos and then upload that photo to my website via a form submission? ...