Developing a Facebook Application for absolute beginners
With more than 300 million active users and 50% of them using it every day (source), Facebook can be an interesting way to make some viral marketing.
One of the most effective ways is developing an application users (and users friends – and friends of users friends – and…) will use every day.
This tutorial will guide you through the creation of a simple application that will display how many male and female friends do you have.
Requirements
To develop a Facebook application with this tutorial, you will need:
* An active Facebook account
* An hosting plan supporting php
* Being my fan
ehm, actually being my fan is not strictly required, but it’s strongly recommended :)
Getting started
Go to developers area and click on Set Up New Application

Give a name to your application and agree terms.

Then, Facebook will create an API key and a secret key. Write them down (well, it’s not necessary since you will always find them in this page, but having something to write down makes me feel like I’m dealing with something important).
At this time the application is ready to run, but you can add more information and icons.
When done, go to Canvas page

Here, you will b asked for a Canvas Page URL that is the unique url of your application. Being obviously unique, all best names have been already taken (just like .com domains). In Canvas Callback URL, you have to enter the URL of the page on your server that will host the application. Then set Render Method to FBML
FBML mode lets you quickly start building an application from scratch, which is good for a absolute beginners. We’ll see it more in depth during next tutorials

At this time your application is ready to be executed.
Download the client library and copy the content of facebook-platform -> php to the Facebook application directory in your server – the same path of Canvas Callback URL.
Your directory now should look like this:

Now, t’s time to create the application itself:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
<?php require_once 'facebook.php'; $appapikey = 'xxxx'; $appsecret = 'xxxx'; $facebook = new Facebook($appapikey, $appsecret); $user_id = $facebook->require_login(); $friends = $facebook->api_client->friends_get(); echo "<p>Hello <fb:name uid=\"$user_id\" useyou=\"false\" linked=\"false\" firstnameonly=\"true\"></fb:name>, you have ".count($friends)." friends"; foreach($friends as $friend){ $infos.=$friend.","; } $infos = substr($infos,0,strlen($infos)-1); $gender=$facebook->api_client->users_getInfo($infos,'sex'); $gender_array = array(); foreach($gender as $gendervalue){ $gender_array[$gendervalue[sex]]++; } $male = round($gender_array[male]*100/($gender_array[male]+$gender_array[female]),2); $female = 100-$male; echo "<ul><li>Males: $male%</li><li>Females: $female%</li></ul>"; ?> |
Line 3: including Facebook library
Lines 5-6: Declaring variables with API key and secret code… yes, the two codes seen before
Line 8: Initializing a Facebook API
Line 10: Requiring the user to be logged into Facebook before using the application. If they are not logged in they will first be directed to a Facebook login page and then back to the application’s page. Then save the user unique id into $user_id variable
Line 12: Storing in the $friends array the unique id of all friends of yours
Line 14: This is the first FBML tag we see: Fb:name renders the name of the user specified by uid attribute. In this case, it will display your name. More information about Fb:name at this page. You can see all available tags at this page
Lines 16-20: Creating a string with all of your friends ids separated by comma, such as uid1,uid2,uid3,...,uidn
Line 22: users_getInfo returns a wide array of user-specific information for each user id passed. As you can see, I pass the whole list of friends and I only want to know their sex. More information about users_getInfo at this page
Line 24: Creating an array where I will store all genders
Line 26-31: Determining the % of each gender (male or female) in my friends list. You can see some additional math because sex value can be blank
Line 33: Displaying the results
Now that your application is completed, you can submit it to the Application directory. Before you are able to do it, your application must have at least 5 total users or 10 monthly active user.
Take a look at the “finished” application.
It should output something like that
|
1 2 3 |
Hello Kirenia, you have 49 friends Males: 53.66% Females: 46.34% |
Warning: During the latest day there is a known bug called facebook auth_token loop that won’t allow you to run the application. If you experience problems, simply check back later.





(135 votes, average: 4.61 out of 5)








This post has 108 comments
Iggy Zuk
woah emanuele, this one might be a start of a whole new hobby for me, thanks for a great simple tutorial c;
Flo
Hi,
The insideRIA blog provides also very nice tutorial in this very interesting facebook topic:
http://blogs.oreilly.com/cgi-bin/mt/mt-search.cgi?IncludeBlogs=34&tag=Facebook%20API&limit=20&IncludeBlogs=34
Thanks a lot for your tutorial!
Flo
Developing a Facebook Application for absolute beginners – step 2 : Emanuele Feronato
[...] It’s time to add some features to the application we created in step 1. [...]
Shanison
hey thanks for this tutorial
Developing a Facebook Application for absolute beginners – step 3 : Emanuele Feronato
[...] step 1 we created a simple Facebook application, and in step 2 we made our application able to write on [...]
Developing a Facebook Application for absolute beginners – step 5 : Emanuele Feronato
[...] Step 1: Creation of the application itself [...]
Alex Duvot
how do you do this on wordpress
mie..
“Now that your application is completed, you can submit it to the Application directory. Before you are able to do it, your application must have at least 5 total users or 10 monthly active user.”
can you tell me solve this?i have problem about this..
1)how i want to invite other user?
2)until then..how i can view my app since it cannot submit to app directory yet..
sorry for this dumb question and thank you for the tutorial..
jack
Mie, yes, I was confused by this as well. As to question 2, to view your app, go to the canvas page url. In the above example, this would be:
http://apps.facebook.com/genderz_demo
Kelsey
This talks about posting a facebook app, but it doesn’t really go into actually ‘creating’ it.
Creating a Flash Facebook application with the Facebook Actionscript API : Emanuele Feronato
[...] suggest you to read the Developing a Facebook Application for absolute beginners posts from 1 to 5 if you don’t know how to create a basic Facebook [...]
Stevor
I’m not familiar with php. Is it only me that gets:
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or ‘}’ in /usr/local/pem/vhosts/147748/webspace/httpdocs/mosh/facebook.php on line 38
Stevor
Hmm. Trying to get the client library for php 4
german
but how do i do to publish this in the wall of the user how get this application?
Horror Profile Facebook application source code released : Emanuele Feronato - italian geek and PROgrammer
[...] I suggest you to read “Developing a Facebook Application for absolute beginners” posts 1, 2, 3, 4 and [...]
tibbi
I also get this error:
Parse error: parse error, expecting
T_OLD_FUNCTION' orT_FUNCTION’ orT_VAR' or‘}” in /3w/borec.cz/t/tibbi/facebook/facebook.php on line 38also this one :P
Fatal error: Cannot instantiate non-existent class: facebook in /3w/borec.cz/t/tibbi/facebook/index.php on line 13
Im not familiar with these things yet, what can I do? thx
tibbi
nevermind, my host had php on 3.3 :D, works fine now
Joe
So this app half works for me. I get this when i go to the app on facebook.
Hello Joey, you have 193 friends Notice:
Undefined variable: infos in /www/zxq.net/j/o/e/joe-morrone/htdocs/gender_app.php on line 17 Warning: stream_context_create() has been disabled for security reasons in /www/zxq.net/j/o/e/joe-morrone/htdocs/facebookapi_php5_restlib.php on line 3390 Warning: fopen() expects parameter 4 to be resource, null given in /www/zxq.net/j/o/e/joe-morrone/htdocs/facebookapi_php5_restlib.php on line 3391 Warning: Invalid argument supplied for foreach() in /www/zxq.net/j/o/e/joe-morrone/htdocs/gender_app.php on line 26 Notice: Use of undefined constant male – assumed ‘male’ in /www/zxq.net/j/o/e/joe-morrone/htdocs/gender_app.php on line 30 Notice: Undefined index: male in /www/zxq.net/j/o/e/joe-morrone/htdocs/gender_app.php on line 30 Notice: Use of undefined constant male – assumed ‘male’ in /www/zxq.net/j/o/e/joe-morrone/htdocs/gender_app.php on line 30 Notice: Undefined index: male in /www/zxq.net/j/o/e/joe-morrone/htdocs/gender_app.php on line 30 Notice: Use of undefined constant female – assumed ‘female’ in /www/zxq.net/j/o/e/joe-morrone/htdocs/gender_app.php on line 30 Notice: Undefined index: female in /www/zxq.net/j/o/e/joe-morrone/htdocs/gender_app.php on line 30 Warning: Division by zero in /www/zxq.net/j/o/e/joe-morrone/htdocs/gender_app.php on line 30
* Males: 0%
* Females: 100%
It correctly counts my total friends and knows my name, but I dont know what all that excess error data is and the percantages for males and femals is of course wrong. Been messing with this for hours now :(
MoMo-Studio Development Blog » Blog Archive » Zetta Monster Plus….Facebook?
[...] http://www.emanueleferonato.com/2009/09/20/developing-a-facebook-application-for-absolute-beginners/ [...]
How I add facebook leaderboard to my Flixel Flash game. @ Life Is So IISD
[...] If you do not know how to get start with Flash Facebook application, I suggest you to read a 5 part articles by Emanuele first. You can find the first part of the series >> HERE << [...]
Birger
I guess you do need to hide the application secret by using PHP or javascript, but can you do what you do above using just Actionscript?
It seems I do not need to embed my flash with a facebook tag.
Why not? What if I do? whats the benefit if any?
Please give us som clarification… cross the nation.
Adding an iFrame to your Facebook Application in 2010
[...] Developing a Facebook App for Absolute Beginners – Emmanuele Feronato [...]
Facebook Blog
i am still confuse,how to coonect with server???
bigmander
did you edited that code on index.php?
another question about these great post, did you configure anything to make this works because i follow the same steps and i cant see anything like yours!
Jason Bass
I having the same issue as Stevor and tibbi…
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or ‘}’ in /home/content/j/b/a/jbass/html/nettravexpress/facebook-platform/php/facebook.php on line 38
BTW, my host is GoDaddy, and is running PHP Version: PHP 4.x
Any suggestions?
vks
Hi emanuele, Thanks for ur tutorials , it give a greate startup for me to facebook app.am sure it helps all begineers like me.Thanks a lot.
Nik Ahmad
Hi Emanuele, how much does it cost to set up a new facebook apps for me? .. the apps will be able to add a tab on everybody’s profile page, have flash in it, the flash contains forms, and the flash will dynamically get variables (like profile picture, profile id) to be included as one of the forms values (sent to my email)
please email me your quotation.
a demo of a finished product would be good.
Rubal
Hi This is a great tutorial, It will help me out to push a program on FaceBook.
Thanks alot :)
http://technoguide.com
Designing A Facebook Fan Page: Showcases, Tutorials, Resources - Smashing Magazine
[...] [...]
Designing A Facebook Fan Page: Showcases, Tutorials, Resources |
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
Designing A Facebook Fan Page: Showcases, Tutorials, Resources | Web Design Cool
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
Designing A Facebook Fan Page: Showcases, Tutorials, Resources | i know idea
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
Designing A Facebook Fan Page: Showcases, Tutorials, Resources « WebbyTuts | Resouces for Designers
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
TG Designer » Designing A Facebook Fan Page: Showcases, Tutorials, Resources
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
Adding RSS Feeds to Your Facebook Fan Page – Static FBML and 3rd-Party Apps | HyperArts
[...] And here’s a very helpful tutorial on creating Facebook canvas applications for beginners. [...]
ArticleSave :: Uncategorized :: Designing A Facebook Fan Page: Showcases, Tutorials, Resources
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
Smashing Magazine: Tim’s shared items in Google Reader: Designing A Facebook Fan Page: Showcases, Tutorials, Resources | XtremelySocial.com
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
Designing A Facebook Fan Page: Showcases, Tutorials, Resources « YouTooDesign
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
yandos
Thanks for the tut. it was not only good, but it also made me smile :D
Warren
I am trying to download the .php library you discuss above
[ At this time your application is ready to be executed.
Download the client library and copy the content of facebook-platform -> php to the Facebook application directory in your server – the same path of Canvas Callback URL.]
but the link is broken.
Where are the files you refer to now kept or is this process no longer possible?
Weekend Inspiration: Facebook Resources | Fat Dude Design: FatBlog!
[...] Creating a Facebook Application - a beginner’s guide by blogger Emanuele Feronato. If you’re html-savvy and ready to add even more interactivity than your Static FBML page offers, this is a great place to start. [...]
Web design Brisbane Adriana
mmmmhhh. I just discovered this blog and I cannot get enough of it! This is a great post for me, because now I am in charge of a facebook fan page of a company and we are barely starting! I read the applications in facebook, and I found them too complicated… This is easy to understand! Thanks!!! (I already became your facebook fan)
Sir Bertly
OMG!!! I am like half way, and I am laughing so hard already!!! you are a great writer!! Thanks for the tut…..now lemme try finish it. Got my pen and paper out so that I can feel important too!! Haha!!
Smashing Magazine: Designing A Facebook Fan Page: Showcases, Tutorials, Resources « Facebook applications for developers
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
marciorosa.org » Developing a Facebook Application for absolute beginners - Complete listing Tools and resorces for the ultimate web developer
[...] by Emanuele Feronato [...]
Mircea
Seems that Facebook changed the way that applications are created, please update your tutorial
Vishwas
hey!,
is connecting facebook with flash, can be done in similar way ? thanks.
Dmillos
Hi warren, I was wondering if you were able to find the files, I am currently trying but it seems that it is different now,
thanks,
-Daniel
blind beginner
im still cant understand it. its so simple to you, not me
would you send me via email? plz
video tutorial seems better, perhaps
sorry my language
n thanks
udayanga
I got this error msg.what should I do?plz help me.
Fatal error: Call to undefined method Facebook::require_login() in /home/petslk8/public_html/fb/index.php on line 10
Sayeam Khan
This tutorial will help me to start developing Facebook Application. Thanks a lot to the author.
Matt
It seems facebook has changed. I don’t have the ‘canvas’ section on the left hand side. Or am i missing something? Please help.
Daniel
Hi Emanuele, i have a problem.
I make a game but I can not get the screen permissions, in your app you have this screen, how i do?
Thanks
If you click on something on the page, then press the browser back button you get the out put below and the Facebook portion has disappeared:
Warning: Cannot modify header information – headers already sent by (output started at /home/triqui/public_html/gamemummy.com/facebook/genderz_demo/index.php:26) in /home/triqui/public_html/gamemummy.com/facebook/genderz_demo/facebook.php on line 390
Warning: Cannot modify header information – headers already sent by (output started at /home/triqui/public_html/gamemummy.com/facebook/genderz_demo/index.php:26) in /home/triqui/public_html/gamemummy.com/facebook/genderz_demo/facebook.php on line 390
Warning: Cannot modify header information – headers already sent by (output started at /home/triqui/public_html/gamemummy.com/facebook/genderz_demo/index.php:26) in /home/triqui/public_html/gamemummy.com/facebook/genderz_demo/facebook.php on line 390
Warning: Cannot modify header information – headers already sent by (output started at /home/triqui/public_html/gamemummy.com/facebook/genderz_demo/index.php:26) in /home/triqui/public_html/gamemummy.com/facebook/genderz_demo/facebook.php on line 394
Facebook Applications
hey thanks its help me alot
Mosaic
This is very helpful and useful, thanks for sharing, great work.
NEha
I cant find the client library
NEha
can anybody tell me where to find client libraries???
kiran
nice tut .
Chriss
Thnx…. great tutorial!!!
Mr Goldfinger
Emanuele,
nice tutorial, cleared my head after starting with the FB api right away.
Greetz from Hamburg, DE
reks
Where is my Facebook application directory?
reks
do we need our own domain??
WK
Hi everyone,
I am completely new to this and am excited to give it a shot. Will you please give me some recommendations on a great place to get “a hosting plan supporting php.” Is there a cost effective, reliable, easy to use, company that I should try (possibly with some sort of customer support)?
vishwa
when i go to developer page i get an error
An error occurred with Developer. Please try again later./b>
pls help me
vibhas
i dont understand that server thing at all please help . plz somebody …
Carlos Hernandez
Hi, do you have an updated version of this tutorial since facebook changed their API during 2010 and they are deprecating FBML?
If so, please send me the link.
Designing A Facebook Fan Page: Showcases, Tutorials, Resources
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
Shawn
The demo isn’t working over HTTPS. Bummer. Facebook forces you to use HTTP to view the demo.
Haseebp
Download the client library and copy the content of facebook-platform -> php to the Facebook application directory in your server – the same path of Canvas Callback URL.
Please Explain this Step!!!
petri
nice one!
thanks a lot – i found a nice tweet for application-development, maybe it’s helpful for some of you too: http://twitter.com/cr8ingapps
Designing A Facebook Fan Page: Showcases, Tutorials, Resources | W Design Love | Graphic and web design blog
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
facebook comments
I have gone to the points given by you to developed the facebook application
I want to developed the apps for my scraps Website.
Please help if you give some other places from where i get the information.
Thanks
Facebook – Maximize sua presença na rede social | BLOG SAMIRDESIGN
[...] Developing a Facebook Application for Absolute Beginners Tutorial minucioso escrito por Emanuele Feronato. [...]
Gpak
This has really enlightened me
Recursos para diseñar y programar una página de fans en Facebook
[...] Developing a Facebook Application for Absolute Beginners [...]
Designing A Facebook Fan Page: Showcases, Tutorials, Resources | Kill your Time
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
Designing A Facebook Fan Page: Showcases, Tutorials, Resources | Sejix Technologies Blog
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
Facebook Fan Page Showcases and learning Resources - Wordpress Arena
[...] Applications: 2010 Recent modifications in Facebook’s API further restricted the use of iFrames. Developing a Facebook Application for Absolute Beginners With more than 300 million active users and 50% of them using it every day (source), Facebook can [...]
Amit
Thanks for the wonderful tutorial!
Designing A Facebook Fan Page: Showcases, Tutorials, Resources | Tips4Designer
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
Areeb
Cool app Keep it up
Designing A Facebook Fan Page: Showcases, Tutorials, Resources - Pixel Promote
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re an effective tool for enhancing interactivity and engaging users. Fortunately, creating a Facebook application is not that difficult. Learn how to do it by reading this thorough tutorial by Emanuele Feronato. [...]
Designing a Facebook fan page: Showcases, Tutorials, Resources - Pixel Promote's Blog
[...] Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of the success of the fan pages on Facebook. Are effective tools to enhance interactivity and attract users. Fortunately, creating a Facebook application is not so difficult. Learning to read this complete tutorial Feronato Emanuele. [...]
Arun
Hey! Here’s a python tutorial for making python facebook apps on Google App Engine!
Arun
Hey! Here’s a python tutorial for making python facebook apps on Google App Engine!
http://blog.arunbalan.in/2011/09/20/facebook-canvas-apps-with-python-on-google-app-engine-super-simplified/
goldcrusaider
Great tut thank you, It really helps. I have a question from the part you wrote about entering a canvas URL:”In Canvas Callback URL, you have to enter the URL of the page on your server that will host the application. Then set Render Method to FBML”
So if I need a ‘canvas call back URL’ can I create a blank webpage, name it a unique name, then place that blank page on my host server? will that do the job? Im confused Im a newbie at this, thanks for any help you can give me.
Bob
hey i am having this error
Fatal error: Uncaught exception ‘FacebookRestClientException’ with message ‘parameters uid or session key required’ in /home/sfc123/public_html/facebook/includes/facebookapi_php5_restlib.php:1734 Stack trace: #0 /home/sfc123/public_html/facebook/includes/facebookapi_php5_restlib.php(401): FacebookRestClient->call_method(‘facebook.friend…’, Array) #1 /home/sfc123/public_html/facebook/world.php(9): FacebookRestClient->friends_get() #2 {main} thrown in /home/sfc123/public_html/facebook/includes/facebookapi_php5_restlib.php on line 1734
I Don’t get a word!!wat dis error means.. PLEASE HELP..
ms-room.com
library cannot download
please reupload
thanx
[bookmarked]
Developing Your First Facebook Application | Video Game Design Experts
[...] recommend taking a look at this site for Facebook API and game creation. … other posts by EIC Paul [...]
Designing A Facebook Fan Page: Showcases, Tutorials, Resources
[...] can still be used in the Canvas Pages application, though, which is the topic of this tutorial. Developing a Facebook Application for Absolute Beginners Applications have proven to be an essential component of successful Facebook fan pages. They’re [...]
Joby Joseph
How To Create a Facebook Application, by Joby Joseph http://bit.ly/AdW6zl
2bigpigs
Thanks for the tutorial.
And here’s a link for those who can’t download the PHP platform files.
https://raw.github.com/facebook/platform/master/clients/packages/facebook-platform.tar.gz
mazhar
wonderful post, finally found a useful article for facebook app creation. keep up to good work mate
Aman Arora @ Tech HowTos Blog
It looks like a good tutorial but I guess facebook has done changes to interface of developers panel and images that are in the tutorial doesn’t really match current panel. Will you be able to update the tutorial or something like that?
nairamania
Hello, where can I download the e-book, I need to sit down and study it.
Lew Chin Hoong
Hi guy, do check out my tutorial on how to create facebook help, hope it help :)
http://woolei.com/how-to-create-facebook-application/
nairamania
Hello Lew Chin, thanks you tutorial rocks!
nairamania
I mean your tutorial rocks!
Susheel Seth
Not Working…the authentication method is old…
Mamun
hello guyz here i’m selling facebook pva (phone verified account).
>facebook PVA with 2 demo apps (complete profile)
>facebook PVA (complete profile)
>facebook bulk account
price:
facebook PVA with 2 demo apps: $0.60 (complete profile)
facebook PVA : $0.50 (complete profile)
so mates feel free contact me.
email : mamun.enter@gmail.com
Divyanshu Negi
great post , creating a facebook app for my website these days , your post seems interesting.
Kushal Shah
hey please write one article about tutorial on how to add paypal donate button on my blog.
rajan
ultimate tutorial rocks………,
Rex
For beginners its good to have lessons but for advance and proficient development .. http://www.appostrophic.com/facebook-application-development/
Abid
Thanks man, it help me alot in making my first application on facebook.
surficle
Thanks for sharing, now i can begin my own facebook application..!
sam
Hi,
any way great tutorial. but that Facebook say FBML is removed. witch you use here. So can you explain new way of doing this.
thanks