Here is a little share from me. Nothing fancy but good to start off with.
Current features:
- Facebook login
- Saving access_token to database for offline access
Small guide:
- Create facebook app and set canvas, and other options.
- Create database and dump facebook.sql into it
- Edit _init.php and replace mysql and facebook configuration variables
Useful links:
Getting user friends:
PHP Code:
$friendsList = $facebook->api('/me/friends');
Getting user info:
PHP Code:
$friendsList = $facebook->api('/me');
Download from attachments