Url | Facebook Emoticons
Advertisment

Tag Archives for Url

For the Emotions – Things That Piss You Off

This video is about everyday things that just piss you off! Enjoy!! Add us in myspace! We have a facebook, but cant find out what the URL is! Any help? Until we can find it, add us on myspace! Will → myspace.com Casey→ myspace.com

Change your username on Facebook Emoticons

We already spoken about how to customize url of our Facebook Emoticons page and have said to choose it very carefully because it would not be possible to change it.

Change username on Facebook

After some abuses from some users that used friends’ names or false names, Facebook Emoticons has given the possibility to change own username.

To change your username you have to go on your Facebook Emoticons profile and go on “Settings”, second voice you’ll find is “username”, insering new username you can verify if it is still available and change.

Finally now, who has choosen a wrong username, or annoyed about the old username can choose another one. I suggest I can give you is:if you have n mind a special name well diffuse go and verify if it is still available and try to get it before another does!
Facebook Emoticons

Facebook Emoticons – Make Your Own Application

Make Your own Facebook Emoticons Application

This basic application will not even require an install from the user.

This site has alot of information:

Code:
http://wiki.developers.facebook.com/

Please Note: You will need a hosting plan.

Facebook Emoticons Developers

  1. Go to:
      Code:
      http://www.facebook.com/developers/createapp.php

      Image
      The Following screen will appear:
      Image

  2. Click Canvas
    • Image
      Fill out: Image

      Select FBML: Image
      Click Save Changes: Image
      Image

  3. On this new page:
    1. Note down the API KEY and APPLICATION SECRET
    2. Click Download the Client Library:
        Image

      Navigate to: facebook-platform -> php -> and copy all these files to the directory of your website

  4. Upload files to the website location you entered into Canvas Callback URL (More Information Below)
  5. Visit Canvas Page URL to view.

Coding Your Site

  1. Create a file called “index.php” at the top include this code:
    Code:
    <?php
    require_once ‘facebook.php’;

    $appapikey = ‘API KEY’;
    $appsecret = ‘APPLICATION SECRET’;
    $facebook = new Facebook($appapikey, $appsecret);
    ?>

  2. Next include all the code you wish to display, including FBJS you wish to use.Here is an example file:
    Code:
    <?php
    require_once ‘facebook.php’;

    $appapikey = ‘API KEY’;
    $appsecret = ‘SECRET’;
    $facebook = new Facebook($appapikey, $appsecret);

    $message = “MESSAGE TO DISPLAY”;
    ?>
    <h1>Message Display</h1>
    Your Message: <?php echo $message; ?>
    <script type=”text/javascript”>
    var attachment = {
    ‘name’:'Message Display’,
    ‘href’:'http://apps.facebook.com/canvasurl/’ ,
    ‘caption’:'{*actor*} displayed the following message:’ ,
    ‘description’:'<?php echo $message; ?>’ ,
    ‘properties’:[{'text':'Get Your Own','href':'http://apps.facebook.com/canvasurl/'}] ,
    ‘media’:

    [{'type':'image','src':'http://www.google.com/linktoimage.jpg','href':'http://apps.facebook.com/canvasurl/'}]
    };
    Facebook.streamPublish(”, attachment);</script>

Testing

  1. When you visit this on the server:
    Image
  2. When you visit this on Facebook:
    Image
  3. And Your Wall:
    Image

Facebook Emoticons