Create a Facebook Application With PHP
By Justin Laing2008-01-07
Facebook API REST-based Interface
The Facebook Client Library provides you with an easy to use wrapper for the Facebook API REST interface. All of the API calls are available under the $facebook->api_client object (after you initiate the $facebook object). Many of the calls will require that the user has either added or logged into the application. Here’s an example call that would retrieve the user’s About Me text from their profile:
$fb_user = $facebook->user;
$about = $facebook->api_client->users_getInfo($fb_user,'about_me');
There are a number of API calls, and a list of them can be found here:
developers.facebook.com/documentation.php
Tutorial pages:
|
Originally posted on Makebeta
|
|||||||||
You might also want to check these out:
|
Leave a Comment on "Create a Facebook Application With PHP"
You must be logged in to post a comment.
Link to This Tutorial Page!

