Showing entries 1 to 1
Displaying posts with tag: MySQLQuiz (reset)
Facebook app creation: A look at the MySQL Quiz. part I

The Facebook juggernaut is an interesting environment for application developers. It is well documented for the most part and supports all the popular development languages. So I created a quick app to help promote MySQL certification and gave it the name MySQLQuiz.

The first step in app development is at the bottom of every Facebook page. That is where you will find the 'Developers' link. The documentation here is very good and you will be be able to quickly obtain the application's API Key and the applications 'secret'. Each app is going to have unique values for these.

The examples I will give are in PHP and using the supplied PHP library. I was able to get all this running on a test server.

The bare bones was


<?php

require_once 'facebook.php';
$appapikey = "yourappapikeyhere";
$appsecret = "yourappsecrethere";
$facebook = new Facebook($appapikey, …
[Read more]
Showing entries 1 to 1