Facebook Application Development PHP SDK 3.1.1

Facebook is going to upgrade Developer API by 1st October 2011. All sites and apps on Facebook will migrate to OAuth 2.0 through this update. This will ensure that users browsing Facebook over HTTPS will have a great experience over a secure connection. We can imagine that these changes will make facebook better and more … Read more

Upgrade Your App to OAuth 2.0 and HTTPS by October 1st

Facebook is going to upgrade Developer API by 1st October 2011. All sites and apps on Facebook will migrate to OAuth 2.0 through this update. This will ensure that users browsing Facebook over HTTPS will have a great experience over a secure connection. We can imagine that these changes will make facebook better and more … Read more

FBTerminal – Tool to access facebook on command lines

FBTerminal is a command line interface (CLI) for facebook designed in PHP using Facebook Application ID, Secret and Access Token. It will work on Windows (CMD.exe), Linux/MAC (Terminal). Right now FBTerminal have limited commands like status update, text post, photo upload etc. FBTerminal will be updated for all basic commands on facebook. You must have … Read more

Exceptions with Facebook Apps

OAuthException: Error validating access token: Session has expired at unix time 1311357600. The current unix time is 1311357734 Request FB Access Token each & every time… Rotate Apps… OAuthException: (#1) An unknown error occurred Sometime facebook block App’s domain and text, images, links etc. used on apps, You can use URL Linter to cross check … Read more

fbsocialmarketing.com

FB Social Marketing is a Social Media Marketing company specializing in the development of Facebook Fan Pages for your business. Be sure to check out complete line of training videos. I have partnered with Shelle Kind of fbsocialmarketing.com and we have released the Amazon S3 / EC2 Solution for Facebook fanpage apps.

Save Facebook Profile Photo

<?php $facebook_uid = ‘100000296428149’; $sourcecode = save_facebook_profile_photo($facebook_uid); print_r($sourcecode); file_put_contents(“images/”.$facebook_uid.”.jpg”, file_get_contents($sourcecode[‘url’])); //this is name of new file that i save function save_facebook_profile_photo( $id ) {     $options = array(         CURLOPT_RETURNTRANSFER => true, // return web page         CURLOPT_HEADER => false, // don’t return headers         CURLOPT_FOLLOWLOCATION => true, // follow redirects         CURLOPT_ENCODING => “”, // handle all encodings         CURLOPT_USERAGENT … Read more

Image Map in FBML

Facebook FBML application does not support hotspots in an image map using dreamweaver. <div style=”position: relative;”> <!– Hot Spots – Image Map –> <div id=”svnlabs1″ style=”background: none repeat scroll 0% 0% transparent; cursor: pointer; outline: medium none; text-align: center; vertical-align: middle; position: absolute; top: 72px; left: 460px; z-index: 99; padding: 10px;”></div> <div id=”svnlabs2″ style=”background: none repeat … Read more