Add Profile Box Using Facebook Application

Posted by: Joy  :  Category: Facebook Tips, Programming

Facebook LogoMost of my friends who are eager on developing facebook application ask me about how to create add profile box to their profile. Here, i’m gonna show you how to make it. Lets assume that you already understand the basic steps to create facebook application using php platform.

Profile.setFBML – That’s what we’re gonna use to add the profile box, you can read more about it on Facebook Developer Wiki

Sets the FBML for a user’s profile or Facebook Page, including:

There are several steps to add content to a User’s profile with profile.setFBML:

  1. interact with the user to gather compelling content
  2. call profile.setFBML
  3. induce the user to click on an Add to Profile button
  4. (optional) induce the user click on an Offline Access button or otherwise grant this permission

Interacting with the user to gather compelling content is highly dependent on your application. You may achieve this in one session, or it might require several interactions with the user.

Example Source Code

<?php
require_once 'PATH_TO_YOUR_LIB/facebook.php';
$appapikey = 'YOUR_API_KEY';
$appsecret = 'YOUR_API_SECRET';
$facebook = new Facebook($appapikey, $appsecret);
$user = $facebook->require_login();
$profile = "<fb:narrow>Narrow Content for Boxes tab</fb:narrow><fb:wide>Wide content for Boxes tab</fb:wide>";
$mobile_profile = "Content for Mobile devices";
$profile_main = "Content for main profile page, under user's photo";
$facebook->api_client->profile_setFBML(NULL, $user, $profile, NULL, $mobile_profile, $profile_main);
?>
<fb:add-section-button section="profile" />

Note:
You must pass NULL between 'profile' and 'mobile_profile' to account for the deprecated 'profile_action' parameter.
Facebook will deprecate this tag in late 2009/early 2010. In the other word, we can only add it to boxes tab later when it happen.

Happy developing facebook application ;)


16 Responses to “Add Profile Box Using Facebook Application”

Pages: « 1 [2] Show All

  1. 11
    Joy Says:

    sayang modulnya udah gadipake lagi sm facebook, skrg kita cm bs add to wall tab

  2. 12
    kepala suku Says:

    joy…posting cara hidden message fb donk..
    capek gw balesin message2 para betina…=))))
    tollong ya joy…please!!

  3. 13
    Joy Says:

    @kepala suku
    udah dibilangin.. hehe.. itu settingan lama div, privacynya ga diupdate makanya msh bs hidden msg. dobol post lg..

  4. 14
    hi Says:

    good work

  5. 15
    Stan Baker Says:

    FB has just taken off the app named blessed friends…just now…8/26 8pm….WHY?????

  6. 16
    Stan Baker Says:

    Anybody know why they took it off?

Pages: « 1 [2] Show All

Leave a Reply

Comment moderation is enabled. Your comment may take some time to appear.