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