Even if I wrote in a previous article that Facebook Connect has not only advantages, a friend asked me to do it for is website. Indeed, unlike WordPress, there still is no solution to easily integrate Facebook Connect with eCommerce websites.
I will show you in this first “Facebook Connect ZenCart Integration” tutorial how to add, […]
March 10th, 2009
Categories: Apps development, Code Samples, Howto, Javascript, Tutorials . Author: admin . Comments: 4 Comments
On the 15th of August, facebooksecrets.blogspot.com published the homepage (index.php) source code of facebook’s website. Three hours later, the publication, on the blog hosted on the google-owned blogger network, was removed after a DMCA (Digital Millennium Copyright Act) take down notice from Facebook.You won’t find the DMCA notice on facebooksecrets.blogspot.com because this blog has been […]
August 18th, 2008
Categories: Apps development, Code Samples, Hack Facebook, News . Author: admin . Comments: No Comments
In this tutorial provided by the facebook developers website, you will learn to use the pyfacebook interface which is a Python interface to the Facebook API.
When uploaded and installed, you just need to the call the new interface in your scripts by adding a line at the top of your script like:
import facebook
And you […]
April 23rd, 2008
Categories: Apps development, Code Samples, Python, Tutorials . Author: admin . Comments: No Comments
Following is a FBJS code sample to create a “Hello World!” program using Javascript with the Facebook specifications.
This will display a link ‘Hello World!’ that will change the color and the background randomly when clicked.
<a href=”#” onclick=”do_colors(this); return false”>Hello World!</a>
<script>
<!–
function random_int(lo, hi) {
return Math.floor((Math.random() * […]
March 6th, 2008
Categories: Apps development, Code Samples, Facebook Methods, Javascript . Author: admin . Comments: No Comments