1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

How to create a facebook application

Discussion in 'Facebook API' started by Techmafia, Sep 12, 2010.

  1. #1
    I was looking on the internet long time but cant find the right one!

    If anyone here who might be interested in sharing how to make it and how to maintain it right from scratch.


    If anyone has a link plz give it
    and if anyone who might be well interested in writing his / her own tutorial on my fb forums plz do the needful at

    http://forums.allaboutfb.info/forumdisplay.php?fid=14

    Thanks will be waiting for some kinda reply here or directly over the forums :)
     
    Techmafia, Sep 12, 2010 IP
  2. Techmafia

    Techmafia Well-Known Member

    Messages:
    678
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    108
    #2
    No one huh?
     
    Techmafia, Sep 13, 2010 IP
  3. mcfox

    mcfox Wind Maker

    Messages:
    7,526
    Likes Received:
    716
    Best Answers:
    0
    Trophy Points:
    360
  4. daljit

    daljit Well-Known Member

    Messages:
    312
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    101
    #4
    I make the fb application for you.Sorry what not tell how to make because its is not a single step..
     
    daljit, Sep 14, 2010 IP
  5. Techmafia

    Techmafia Well-Known Member

    Messages:
    678
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    108
    #5
    take how much steps u want but please do the needful
     
    Techmafia, Sep 14, 2010 IP
  6. igetfx

    igetfx Peon

    Messages:
    26
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Ya... take as much steps as you needed
     
    igetfx, Sep 20, 2010 IP
  7. jbtooloo

    jbtooloo Peon

    Messages:
    206
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Do you know Drupal?!

    My company White Hat Media used Drupal for a landing page for a client using the Facebook API. I reckon that could be a route to research... Good luck!
     
    jbtooloo, Sep 23, 2010 IP
  8. ghazal

    ghazal Member

    Messages:
    101
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    28
  9. bareket57

    bareket57 Peon

    Messages:
    43
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    bareket57, Oct 13, 2010 IP
  10. shmekerosu

    shmekerosu Active Member

    Messages:
    571
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    90
    #10
    this tuts are old and not quite working since FB upgraded their OAuth and new Graph API.
    if you have a FB project in mind contact me via PM I might help you.

    Basicaly the steps are:
    Prerequisites: little php and javascript knowledge, webhosting to store your files since FB does not do this...
    1. create facebook app and setup name, url, type etc at:http://www.facebook.com/developers/createapp.php
    2. if you want to embed your current page or simple new page to FB chose iframe type. no need to make a request of user permissions if you use his public profile data that is
    - name
    - gender
    - location
    - picture
    etc, if you need to access friends data and post to walls then you will need to request this:

    Basic login and request permission looks like this php/js:
    //Facebook Authentication part
    $session = $facebook->getSession();
    $loginUrl = $facebook->getLoginUrl(
    array(
    'canvas' => 1,
    'fbconnect' => 0,
    'req_perms' => 'email,publish_stream,status_update,user_birthday, user_location,user_work_history'
    )
    );

    $fbme = null;

    if (!$session) {
    echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
    exit;
    }
    else {
    try {
    $uid = $facebook->getUser();
    $fbme = $facebook->api('/me');

    } catch (FacebookApiException $e) {
    echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
    exit;
    }
    }
    3. Imagination is the limit, read more at: http://developers.facebook.com/docs/guides/canvas/
     
    shmekerosu, Nov 19, 2010 IP
  11. Techmafia

    Techmafia Well-Known Member

    Messages:
    678
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    108
    #11
    Thanks alot for that quickie dude!!!

    check PM i have pmed some doubts :)
     
    Techmafia, Nov 19, 2010 IP
  12. micromax

    micromax Peon

    Messages:
    3
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    You will get more info if you search into google.com or yahoo.com
     
    micromax, Nov 22, 2010 IP
  13. Techmafia

    Techmafia Well-Known Member

    Messages:
    678
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    108
    #13
    I know that micromax!

    mcfox has given it
    dont post just to increase ur post count please!
     
    Techmafia, Nov 22, 2010 IP
  14. mspider

    mspider Guest

    Messages:
    231
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #14
    It's very important that you will not confuse with some old tutorials because those instructions are not working any more because of new FB API which release april 2010.
     
    mspider, Dec 8, 2010 IP
  15. vinamain

    vinamain Peon

    Messages:
    2
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    great article

    Thanks a lot!
     
    vinamain, Dec 8, 2010 IP
  16. Maitah

    Maitah Peon

    Messages:
    14
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #16
    i think its quite difficult to make..
     
    Maitah, Dec 8, 2010 IP