Skip to main content

bebo-logo

Introduction

I have been answering a lot of email requests for how to get started with a Bebo application. Since applications can be written in any language that supports interaction with the Bebo REST API, developers have a lot of choices in how they build their application. The focus of this article will be on the "officially supported language" - PHP. I saw officially supported, because the Bebo Platform Team has released a simple PHP wrapper that makes using the REST API very simple, and they update this from time to time.

Before creating an application, you need to understand the parts of an application and how they interact with Bebo. I will go over each part below, and then show an example of a very simple application that uses each part.

The parts of a Bebo Application

The Bebo URL - this is the URL that users go to on Bebo. It is in the format "http://apps.bebo.com/yourapp/"

The Callback URL - this is the URL on your server that Bebo redirects to. It is where the actual application lives.

The Canvas Page - this is the main page of a Bebo application. It takes up the entire web page, except for the Bebo top header and footer. User's going to your canvas page are using your server directly via the callback URL. Canvas pages can either be written in SNML, a markup language that is standardized across Facebook and Bebo and is fast to load, or in an iFrame. Javascript is only allowed in iFrame based applications, but they cannot use SNML.

The Profile Box - each application can create a presence on the installing user's Profile page. This contents of this box are set by the application, but when the user is seeing this Profile box, it is running a cached version on Bebo's servers. The user can click links or interact with Flash to go to the canvas page or call back to your server using simple AJAX. Since browsing other people's Profiles is one of the main activities on Bebo, creating a compelling Profile Box is a very important part of helping your application to spread.

Invitations - each application can provide a way for users to recommend it to their friends. Bebo provides a common dialog for selecting friends, and limits the total number of invitations that can be send per person per day. You can control some of the text that the inviter sees when selecting their friends, and some of the text in the actual invitation. Your application must give the user a reason to want to send an invitation, either by being innately good, or by some type of reward system for invited friends.

News Stories - applications can produce news stories based on how the users interact with the application. These stories appear on the user's Profile page in the news section. Bebo will also show the most interesting stories from a user's friends on their home page. News stories should be interesting and actionable in order to help your application spread and provide value to the user.

Building a Bebo Application

  1. Get a Server - As I said above, we will focus on building an application using PHP. The first thing you need is a server to host your application files. Some likely candidates might be your home pc to start, Joyent or another hosting company, or the Amazon EC2 web server platform. As your application grows, your server needs will probably grow as well, so it good to think about how you will handle thousands of users early on. RightScale.com provides some automatic scaling services on top of the Amazon EC2 platform, that let you spin up and shut down servers to meet your demand, so that you only pay for what you use. You will need the information about this server to set up and deploy your application.
  2. Install the Bebo Developer Application - go to http://www.bebo.com/Profile.jsp?MemberId=5036051566 and install this application. It is written by Bebo, and is required to let you set up your application with Bebo. Once you have it installed, you can go to create a new application.
    1. Click the Create New Application link at the top right
    2. Enter the Application Name - this is the name you want people to see. Example: "Favorite Birds".
    3. Enter the Application URL - this is the Bebo URL that users will go to. This name doesn't have to match the Application Name, and in some cases cannot, because the name you pick might already be in use. Example: "favoritebirds".
    4. Pick a canvas style - If you want to use the Bebo SNML markup language, choose SNML. If you want to host an external site in an iframe or use javascript frameworks, then choose iFrame. For this example, we will choose SNML.
    5. Enter a description - Type something, but don't worry too much about this now, you can fill this out later.
    6. Enable on a profile - Check this box if you want to let users have your application on their profile. In almost every case, you will leave this checked.
    7. Callback URL - the location on your server that holds your files. I like to have the directory match the application url I set above, and I end it in a slash. Example: http://myserver.com/favoritebirds/
    8. Post Add URL - Leave this blank for now. I will go over how to handle this later.
    9. Remove Callback URL -Leave this blank for now. I will go over how to handle this later.
    10. Default SNML - this is a way to initially set the contents of all new user's profile boxes.
    11. Categories - pick one that fits your application. You can change it later.
    12. Icons - you can update this later, so leave it for now.
    13. Leave the Manage Test Group checkbox checked and set to Only Developers.
    14. Check the I have read the terms checkbox.
    15. Click Create Application.
    16. It should take you to the My Applications page and you should see your new application along with a bunch of other information. We will use this later, so leave the page up.
  3. Get the Bebo library - the Bebo platform team provides an updated wrapper library here http://developer.bebo.com/downloads/example-libs-php.php.
    1. Create a new source directory - c:\src\favoritebirds.
    2. Download this file and save it in your source directory. Call it something simple, like bebo.php.
  4. Set up your web host
    1. In Apache, edit your http.conf or create an .htaccess file so that your new callback url http://myserver.com/favoritebirds/ points to your source directory.
    2. In IIS, use the IISAdmin tool to create a new Virtual Directory so that your new callback url http://myserver.com/favoritebirds/ points to your source directory.
  5. Create your index.php file
      1. For this example, we will do all the work in this file. In a real application, you would want to split up your work into classes or modules or include files that make sense for your project.
      2. Include the bebo php library.
            require_once "bebo.php";
      3. Your file needs to have some globals that define the project.
            $appVisibleName = "Example App";
            $appApiKey = 'copy API Key from the developer application page';
            $appSecret = 'copy API Secret from the developer application page';
            $appCallback = 'put in your callback url. Ex - http://myserver.com/favoritebirds/ ';
            $appBeboURL = 'put in the Application URL above - http://apps.bebo.com/favoritebirds/';
      4. The easiest way to handle users is to force everyone to add right away. If they haven't Bebo will take then to the add page and then send them back. If they have already added your application, then you will just get their userid.
            $bebo = new Bebo( $appApiKey, $appSecret );
            $userID = $bebo->require_add();
      5. Now you can display the page to them using some SNML.
        displayPage($bebo);
        function displayPage($bebo) {
            $userID = $bebo->user;
            $output = "Welcome back, <sn:name uid='$userID' useyou='false' />.<br/>
                You have a nice picture:<sn:profile-pic uid='$userID' linked='false'/>";
            echo $output;
        }

    You now have a fully functional Bebo application. But, let's add some more features.

  6. Updating the user's profile
    1. It is simple to update a user's Profile Box each time they access your application. Just create a new updateProfile function and call it after your displayPage function.
          updateProfile($bebo);
          function updateProfile($bebo) {
              global $appVisibleName;
      
              $userID = $bebo->user;
              $snml = "This is the $appVisibleName profile box of <sn:name uid='$userID' useyou='false' />
      			<br/><sn:profile-pic uid='$userID' size='square' linked='false'/>";
              $bebo->api_client->profile_setSNML($snml);
          }
  7. Creating a News Story when the user accesses your page
    1. News stories are a great way to let a user's friends know about the great things the user is doing with your application. Just add a new publishStory function and call it when the user does something meaningful.
          publishStory($bebo);
          function publishStory($bebo) {
              global $appVisibleName;
              global $appBeboURL;
      
              $actor = $bebo->user;
              $title_template = "{actor} used <a href='$appBeboURL'>$appVisibleName</a>";
              $title_data = null;
              $body_template = null;
              $body_data = null;
              $body_general = "Everyone should try $appVisibleName. <a href='$appBeboURL'>
      			Install $appVisibleName today.</a>";
              $image1 = null;
              $image1Link = null;
      
              try {
                  $result = $bebo->api_client->feed_publishTemplatizedAction( $actor, $title_template,
      			$title_data, $body_template, $body_data, $body_general,
                  $image1, $image1Link,
                  NULL, NULL,
                  NULL, NULL,
                  NULL, NULL,
                  "");
              } catch( Exception $ex) {
              }
          }
  8. Allow users to share your application with Invites
    1. If your application is worthwhile, users will want to let their friends know about it. Use the standard Bebo Invite control to let them invite up to 20 friends/day. Just add a new getInvitePageURL function, and add a link somewhere on your page to that url.
          $invitePageURL = getInvitePageURL($bebo);
          echo "<a href='$invitePageURL'>Would you like to invite some friends?</a>";
      
          function getInvitePageURL($bebo) {
              global $appApiKey;
              global $appBeboURL;
              global $appVisibleName;
      
              $beboInvitePage = "http://www.bebo.com/multi_friend_selector.php";
              // What the inviter sees
              $actionText = urlencode("Which friends do you want to invite?");
              $action = $appBeboURL;
              $type = urlencode("Invite");
      
              // What the recipient sees
              $acceptInviteButtonURL = $bebo->get_add_url($appBeboURL);
              $acceptInviteButtonLabel = "Add $appVisibleName";
              $acceptInviteButton = "<sn:req-choice url='$acceptInviteButtonURL' label='$acceptInviteButtonLabel' />";
              $content = urlencode("Hey, try out $appVisibleName. $acceptInviteButton");
      
              $sig = 0; // update with the signature tool. This is a two step process. Generate the url for the invite page
              // Then go to http://www.bebo.com/AppToolSig.jsp and paste it in. At the bottom, you will get a signature. Update the value above.
              // If you change the invite text, you will have to regenerate the sig above
              $invitePageURL = "$beboInvitePage?sig=$sig&api_key=$appApiKey&content=$content&type=$type
      			&action=$action&actiontext=$actionText&invite=true";
      
              return $invitePageURL;
          }

Here is the completed sample:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <?php
    date_default_timezone_set("America/New_York");

    require_once "bebo.php";

    // Global definitions for your app
    $appVisibleName = "Favorite Birds";
    $appApiKey = "copy API Key from the developer application page";
    $appSecret = "copy API Secret from the developer application page";
    $appCallback = "http://myserver.com/favoritebirds ";
    $appBeboURL = "http://apps.bebo.com/favoritebirds/";

    ///Main Entry Point ///
    // Force everyone to add the application.
    // If they have already added it, then display the page
    $bebo = new Bebo( $appApiKey, $appSecret );
    $userID = $bebo->require_add();
    displayPage($bebo);

    // Update the user's profile
    updateProfile($bebo);

    // Publish a news story
    publishStory($bebo);
    ///End Main Entry Point ///

    function displayPage($bebo) {
        $userID = $bebo->user;
        $output = "Welcome back, <sn:name uid='$userID' useyou='false' />.<br/>
            You have a nice picture:<sn:profile-pic uid='$userID' linked='false'/>";

        // Add the link to the invite page
        $invitePageURL = getInvitePageURL($bebo);
        $output .= "<br/><a href='$invitePageURL'>Would you like to invite some friends?</a>";
        echo $output;
    }

    // returns the url for the Bebo standard invite page
    function getInvitePageURL($bebo) {
        global $appApiKey;
        global $appBeboURL;
        global $appVisibleName;

        $beboInvitePage = "http://www.bebo.com/multi_friend_selector.php";
        // What the inviter sees
        $actionText = urlencode("Which friends do you want to invite?");
        $action = $appBeboURL;
        $type = urlencode("Invite");

        // What the recipient sees
        $acceptInviteButtonURL = $bebo->get_add_url($appBeboURL);
        $acceptInviteButtonLabel = "Add $appVisibleName";
        $acceptInviteButton = "<sn:req-choice url='$acceptInviteButtonURL' label='$acceptInviteButtonLabel' />";
        $content = urlencode("Hey, try out $appVisibleName. $acceptInviteButton");

        $sig = 0; // update with the signature tool. This is a two step process. Generate the url for the invite page
        // Then go to http://www.bebo.com/AppToolSig.jsp and paste it in. At the bottom, you will get a signature. Update the value above.
        // If you change the invite text, you will have to regenerate the sig above
        $invitePageURL = "$beboInvitePage?sig=$sig&api_key=$appApiKey&content=$content&type=$type&action=$action&actiontext=$actionText&invite=true";

        return $invitePageURL;
    }	

    function updateProfile($bebo) {
        global $appVisibleName;

        $userID = $bebo->user;
        $snml = "This is the $appVisibleName profile box of <sn:name uid='$userID' useyou='false' />
			<br/><sn:profile-pic uid='$userID' size='square' linked='false'/>";
        $bebo->api_client->profile_setSNML($snml);
    }

    function publishStory($bebo) {
        global $appVisibleName;
        global $appBeboURL;

        $actor = $bebo->user;
        $title_template = "{actor} used <a href='$appBeboURL'>$appVisibleName</a>";
        $title_data = null;
        $body_template = null;
        $body_data = null;
        $body_general = "Everyone should try $appVisibleName. <a href='$appBeboURL'>Install $appVisibleName today.</a>";
        $image1 = null;
        $image1Link = null;

        try {
            $result = $bebo->api_client->feed_publishTemplatizedAction( $actor, $title_template,
			$title_data, $body_template, $body_data, $body_general,
            $image1, $image1Link,
            NULL, NULL,
            NULL, NULL,
            NULL, NULL,
            "");
        } catch( Exception $ex) {
        }
    }
    ?>

Advanced user state management

The example above just forces everyone to add, but isn't able to specially handle new installs or removals. You can handle those by looking at the $_REQUEST parameters that Bebo passes your application. These parameters show that users come to your application in 1 of 3 states:

  1. Just installed the application
  2. A normal user of the application
  3. Just removed the application

By changing the block marked ///Main Entry Point /// above to one that detects the state, you can handle each one differently. You will need to add new functions to handle new user installs and uninstalls

    ///Main Entry Point ///
    // An existing user will have the fb_sig_in_canvas variable set, unless they are removing
    if (isSet($_POST) && isSet($_POST['fb_sig_in_canvas'])) {    

        //  Bebo will pass their user id and that they have added the application
        if ( isSet($_POST['fb_sig_user']) && $_POST['fb_sig_added'] == 1 ) {
            $userID = $_POST['fb_sig_user'];

            // If the user has just installed, Bebo will pass installed as a GET parameter
            if ( isSet($_GET) && isSet($_GET['installed']) ) {
                newInstall($userID);
            }

            // Normal users will go through here, so display the page
            $bebo = new Bebo( $appApiKey, $appSecret );
            displayPage($bebo);

            // Update the user's profile
            updateProfile($bebo);

            // Publish a news story
            publishStory($bebo);
        }
    }

    // If you set up your own post add handler, then you must handle the add request the way you want,
    // and then redirect back to your Bebo URL. If you don't specify a post add handler, Bebo does this for you.
    else if ( isSet($_GET) && isSet($_GET['installed']) ) {
          $bebo = new Bebo( $appApiKey, $appSecret );
          newInstall($bebo );
          $bebo->redirect($appBeboURL);
    }
    // If you specify a post remove URL, then Bebo will call it with this POST variable.
    // After this call, you won't get anything else from this user unless they re-add your application
     else if ( isSet($_POST) && isSet($_POST['fb_sig_uninstall']) ) {
        $userID = $_POST['fb_sig_user'];
        uninstallUser( $userID);
    }

    // If the user goes to your callback URL directly, they didn't come in from Bebo, and you will have no information about the user
    // In most cases, you will just want to force the user to add the application by using require_add. This will force them back through
    // the existing user path above
    else {
        $bebo = new Bebo( $appApiKey, $appSecret );
        $bebo->require_add();
    }

    // Handle a new user installation
    function newInstall($userID) {
        // We can use the SNML to say hello to the user
        $output = "Hello, <sn:name uid='$userID' useyou='false' />. Thanks for adding the application!";
        echo $output;
    }
    function uninstallUser($userID) {
        // You can't actually display anything to the user, or redirect them.
        // All you can do is clean up inside your application.

    }	

    ///End Main Entry Point ///

About Thought Labs

Thought Labs provides custom software development and consulting services with a specialization in Social Network technologies. We build branded Facebook Pages for your company or multiple Pages for your various products. In addition, we create rich interactive applications on your Page to help users find your products and services. Thought Labs can also create custom Facebook, Bebo or OpenSocial applications carrying your message and your brand with them.

We pride ourselves on the quality of our work. We employ top application developers who are creative, highly skilled, up-to-date on the Social Networks' constantly changing APIs, and excellent at project management. We set high standards for ourselves and we meet them. In this new world of social marketing, Thought Labs delivers extremely innovative, high-quality work on time and on budget. Find out more at https://www.thoughtlabs.com.com.

Tags:

Programming
Post by John Maver
May 08, 2008