Creating an API-Centric Web Application

Creating an API-Centric Web Application

Tutorial Details
  • Topic: Web Applications, API
  • Version: PHP 5.2.17+
  • Difficulty: Intermediate
  • Estimated Completion Time: 2 Hours

Planning to start working on a new web application? In this tutorial, we’ll discuss how to create an API-centric web application, and explain why this is essential in today’s multi-platform world.


Introduction

API?

For those who are unfamiliar with the term, API is short for Application Programming Interface. According to Wikipedia:

An application programming interface (API) is a source code based specification intended to be used as an interface by software components to communicate with each other. An API may include specifications for routines, data structures, object classes, and variables.

In simpler terms, an API refers to a set of functions built into an application, which can be used by other applications (or by itself, as we’ll see later), to interact with the application. An API is a great way to expose an application’s functionality to external applications safely and securely, since all functionality that these external applications can do is limited with what functionality is exposed in the API.

What’s an “API-Centric” Web Application?

An API-Centric Web Application is a web application that basically executes most, if not, all its functionality through API calls.

An API-Centric Web Application is a web application that basically executes most, if not, all its functionality through API calls. For example, if you were to log in a user, you would send his credentials to the API, and the API would return to you a result saying if the user provided the correct user-password combination.

Another characteristic of an API-Centric Web Application is that the API will always be stateless, meaning it can’t recognize API calls by session. Since API calls will be made by usually via the backend code, it will be hard to implement session handling, since there are usually no cookies involved in that. This limitation is actually good — this “forces” a developer to build an API that works not based on the state of the current user, but rather on functionality, which in turn, makes it easier to test, since the current state of a user doesn’t need to be recreated.

Why go through all this trouble?

As web developers, we’ve seen technology evolve first hand. It’s common knowledge that people today don’t just use applications via a browser, but through other gadgets, like mobile phones and tablets. For example, this article on Mashable, entitled “Consumers Now Spending More Time on Mobile Apps Than the Web”, states:

Consumers are spending more time on mobile apps than on the web for the first time, a new report claims.

Flurry compared its mobile data to stats from comScore and Alexa, and found that in June, consumers spent 81 minutes per day using mobile apps, compared to 74 minutes of web surfing.

Here’s a more recent article from ReadWriteWeb, entitled “More People Browse On Mobile Than Use IE6 & IE7 Combined:

The latest data on browser trends from Sitepoint show that more people browse the Web on smartphones than use Internet Explorer 6 and 7 combined. Those two old clunkers have been the bugbears of Web developers for years, requiring sites to degrade as nicely as possible to that least common denominator of browsers. But it’s a new world now; 6.95% of Web activity in November 2011 was on mobile browsers, and only 6.49% was on IE 6 or 7.

As we can clearly see, more and more people get their news from alternative venues, specifically mobile devices.

What does this have to do with me creating an API-Centric Web Application?

This would inevitably lead to more usage of our application, since it can be used anywhere a person wants.

One of the main advantages of creating an API-centric application is that it helps you build functionality that can be used by ANY device, be it a browser, a mobile phone, a tablet, or even a desktop app. All you need to do is to create the API in such a way that all these devices can communicate with it, and voila! You’ll have built a centralized application that can take input and execute functionality from any device that a person has!

API-Centric Application Diagram

API-Centric Application Diagram

By creating an application in this manner, we’re able to easily take advantage of the different mediums used by different people. This would inevitably lead to more usage of an application, since it can be used anywhere a person wants.

To drive the point home, here’s an article about Twitter’s new redesigned website, which tells us about how they now use their API to power Twitter.com, essentially making it API-centric:

One of the most important architectural changes is that Twitter.com is now a client of our own API. It fetches data from the same endpoints that the mobile site, our apps for iPhone, iPad, Android, and every third-party application use. This shift allowed us to allocate more resources to the API team, generating over 40 patches. In the initial page load and every call from the client, all data is now fetched from a highly optimized JSON fragment cache.

In this tutorial, we’ll be creating a simple TODO list application that is API-Centric and create one front-end client on the browser that interacts with our TODO list application. By the end, you’ll know the integral parts of an API-Centric application, and at the same time, how to facilitate secure communication between the two. With that in mind, let’s begin!


Step 1: Plan the Application’s Functions

The TODO application we’ll be building in this tutorial will have the basic CRUD functions:

  • Create TODO Items
  • Read TODO Items
  • Update TODO Items (rename, mark as done, mark as undone)
  • Delete TODO Items

Each TODO item will have:

  • a Title
  • a Date Due
  • a Description
  • a flag to tell if the TODO Item Is Done
  • Let’s mockup the application as well so we have a guide on how it should look like afterwards:

    SimpleTODO Mockup

    SimpleTODO Mockup

    Step 2: Create the API Server

    Since we’re developing an API-Centric application, we’ll be creating two “projects”: the API Server, and the Front-end Client. Let’s begin by creating the API server first.

    On your web server’s folder, create a folder named simpletodo_api, and create an index.php file. This index.php file will act as a front controller for the API, so all requests to the API server will be made through this file. Open it up and put the following code inside:

    <?php
    // Define path to data folder
    define('DATA_PATH', realpath(dirname(__FILE__).'/data'));
    
    //include our models
    include_once 'models/TodoItem.php';
    
    //wrap the whole thing in a try-catch block to catch any wayward exceptions!
    try {
    	//get all of the parameters in the POST/GET request
    	$params = $_REQUEST;
    	
    	//get the controller and format it correctly so the first
    	//letter is always capitalized
    	$controller = ucfirst(strtolower($params['controller']));
    	
    	//get the action and format it correctly so all the
    	//letters are not capitalized, and append 'Action'
    	$action = strtolower($params['action']).'Action';
    
    	//check if the controller exists. if not, throw an exception
    	if( file_exists("controllers/{$controller}.php") ) {
    		include_once "controllers/{$controller}.php";
    	} else {
    		throw new Exception('Controller is invalid.');
    	}
    	
    	//create a new instance of the controller, and pass
    	//it the parameters from the request
    	$controller = new $controller($params);
    	
    	//check if the action exists in the controller. if not, throw an exception.
    	if( method_exists($controller, $action) === false ) {
    		throw new Exception('Action is invalid.');
    	}
    	
    	//execute the action
    	$result['data'] = $controller->$action();
    	$result['success'] = true;
    	
    } catch( Exception $e ) {
    	//catch any exceptions and report the problem
    	$result = array();
    	$result['success'] = false;
    	$result['errormsg'] = $e->getMessage();
    }
    
    //echo the result of the API call
    echo json_encode($result);
    exit();
    

    What we’ve essentially built here is a simple front controller that does the following:

    • Accept an API call with any number of parameters
    • Extract the Controller and Action for the API call
    • Make the necessary checks to ensure that the Controller and Action exist
    • Execute the API call
    • Catch errors, if any
    • Send back a result to the caller

    Besides the index.php file, create three folders: a controllers, models and data folder.

    API server folders
    • The controllers folder will contain all the controllers we’ll be using for the API server. We’ll be building it using the MVC architecture to make the structure of the API server cleaner and more organized.
    • The models folder will contain all the data models for the API server.
    • The data folder will be where the API server saves any data

    Go into the controllers folder and create a file called Todo.php. This will be our controller for any TODO list related tasks. With the functions we’ll be needing for our TODO application in mind, create the necessary methods for the Todo controller:

    
    <?php
    class Todo
    {
    	private $_params;
    	
    	public function __construct($params)
    	{
    		$this->_params = $params;
    	}
    	
    	public function createAction()
    	{
    		//create a new todo item
    	}
    	
    	public function readAction()
    	{
    		//read all the todo items
    	}
    	
    	public function updateAction()
    	{
    		//update a todo item
    	}
    	
    	public function deleteAction()
    	{
    		//delete a todo item
    	}
    }
    
    

    Now, add the necessary functionality to each action. I’ll provide the code for the createAction method and I’ll leave it up to you to create the code for the other methods. If you’re not in the mood though, you can just download the source code for the demo and copy it from there.

    
    public function createAction()
    {
    	//create a new todo item
    	$todo = new TodoItem();
    	$todo->title = $this->_params['title'];
    	$todo->description = $this->_params['description'];
    	$todo->due_date = $this->_params['due_date'];
    	$todo->is_done = 'false';
    	
    	//pass the user's username and password to authenticate the user
    	$todo->save($this->_params['username'], $this->_params['userpass']);
    	
    	//return the todo item in array format
    	return $todo->toArray();
    }
    
    

    Create TodoItem.php inside the models folder so we can create the “item creation” code. Take note that I won’t be connecting to a database, rather, I’ll be saving the information into files. It should be relatively easy though to make this work with any database.

    
    <?php
    class TodoItem
    {
    	public $todo_id;
    	public $title;
    	public $description;
    	public $due_date;
    	public $is_done;
    	
    	public function save($username, $userpass)
    	{
    		//get the username/password hash
    		$userhash = sha1("{$username}_{$userpass}");
    		if( is_dir(DATA_PATH."/{$userhash}") === false ) {
    			mkdir(DATA_PATH."/{$userhash}");
    		}
    		
    		//if the $todo_id isn't set yet, it means we need to create a new todo item
    		if( is_null($this->todo_id) || !is_numeric($this->todo_id) ) {
    			//the todo id is the current time
    			$this->todo_id = time();
    		}
    		
    		//get the array version of this todo item
    		$todo_item_array = $this->toArray();
    		
    		//save the serialized array version into a file
    		$success = file_put_contents(DATA_PATH."/{$userhash}/{$this->todo_id}.txt", serialize($todo_item_array));
    		
    		//if saving was not successful, throw an exception
    		if( $success === false ) {
    			throw new Exception('Failed to save todo item');
    		}
    		
    		//return the array version
    		return $todo_item_array;
    	}
    	
    	public function toArray()
    	{
    		//return an array version of the todo item
    		return array(
    			'todo_id' => $this->todo_id,
    			'title' => $this->title,
    			'description' => $this->description,
    			'due_date' => $this->due_date,
    			'is_done' => $this->is_done
    		);
    	}
    }
    
    

    The createAction method calls two functions on the TodoItem model:

    • save() – this saves the TodoItem into a file, as well as set the todo_id for the TodoItem if necessary
    • toArray() – this returns an array version of the TodoItem, where the variables are the array’s indexes

    Since the API is called via HTTP requests, let’s test that API call by calling it through the browser:

    http://localhost/simpletodo_api/?controller=todo&action=create&title=test%20title&description=test%20description&due_date=12/08/2011&username=nikko&userpass=test1234

    If everything worked, you should see a new folder inside the data folder, and inside that folder, you should see a file with the following content:

    createAction() result

    createAction() result

    Congratulations! You’ve successfully created an API server and made an API call!


    Step 3: Secure the API Server with an APP ID and APP SECRET

    Currently, the API server is set to accept ALL API requests. We’ll need to limit it to our own applications only, to ensure that only our own front-end clients are able to make API requests. Alternatively, you can actually create a system wherein users can create their own applications that have access to your API server, similar to how Facebook and Twitter applications work.

    Begin by creating a set of id-key pairs for the clients that will be using the API server. Since this is just a demo, we can use any random, 32 character string. For the APP ID, let’s say it’s application APP001.

    Open the index.php file again, and then update it with the following code:

    
    <?php
    // Define path to data folder
    define('DATA_PATH', realpath(dirname(__FILE__).'/data'));
    
    //Define our id-key pairs
    $applications = array(
    	'APP001' => '28e336ac6c9423d946ba02d19c6a2632', //randomly generated app key 
    );
    //include our models
    include_once 'models/TodoItem.php';
    
    //wrap the whole thing in a try-catch block to catch any wayward exceptions!
    try {
    	//*UPDATED*
    	//get the encrypted request
    	$enc_request = $_REQUEST['enc_request'];
    	
    	//get the provided app id
    	$app_id = $_REQUEST['app_id'];
    	
    	//check first if the app id exists in the list of applications
    	if( !isset($applications[$app_id]) ) {
    		throw new Exception('Application does not exist!');
    	}
    	
    	//decrypt the request
    	$params = json_decode(trim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $applications[$app_id], base64_decode($enc_request), MCRYPT_MODE_ECB)));
    	
    	//check if the request is valid by checking if it's an array and looking for the controller and action
    	if( $params == false || isset($params->controller) == false || isset($params->action) == false ) {
    		throw new Exception('Request is not valid');
    	}
    	
    	//cast it into an array
    	$params = (array) $params;
    	...
    	...
    	...
    
    

    What we’ve done here is actually implement a very simple way of authenticating our front-end clients using a system similar to public-private key authentication. Basically, here is the step-by-step breakdown of how the authentication happens:

    Public-key encryption

    Public-key encryption
    • an API call is made, in it an $app_id and $enc_request is provided.
    • the $enc_request value is the API call parameters, encrypted using APP KEY. The APP KEY is NEVER sent to the server, it’s only used to hash the request. Additionally, the request can only be decrypted using the APP KEY.
    • once the API call arrives to the API server, it will check its own list of applications for the APP ID provided
    • when found, the API server attempt to decrypt the request using the key that matches the APP ID sent
    • if it was successful in decrypting it, then continue on with the program

    Now that the API server is secured with an APP ID and APP SECRET, we can begin programming a front-end client to use the API server.


    Step 4: Create the Browser Front-end Client

    We’ll begin by setting up a new folder for the front-end client. Create a folder called simpletodo_client_browser on your web server’s folder. When that’s done, create an index.php file and put this code inside:

    
    <!DOCTYPE html>
    <html>
    <head>
    	<title>SimpleTODO</title>
    	
    	<link rel="stylesheet" href="css/reset.css" type="text/css" />
    	<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" />
    	
    	<script src="js/jquery.min.js"></script>
    	<script src="js/jquery-ui-1.8.16.custom.min.js"></script>
    	
    	<style>
    	body {
    		padding-top: 40px;
    	}
    	#main {
    		margin-top: 80px;
    		text-align: center;
    	}
    	</style>
    </head>
    <body>
    	<div class="topbar">
    		<div class="fill">
    			<div class="container">
    				<a class="brand" href="index.php">SimpleTODO</a>
    			</div>
    		</div>
    	</div>
    	<div id="main" class="container">
    		<form class="form-stacked" method="POST" action="login.php">
    			<div class="row">
    				<div class="span5 offset5">
    					<label for="login_username">Username:</label>
    					<input type="text" id="login_username" name="login_username" placeholder="username" />
    				
    					<label for="login_password">Password:</label>
    					<input type="password" id="login_password" name="login_password" placeholder="password" />
    					
    				</div>
    			</div>
    			<div class="actions">
    				<button type="submit" name="login_submit" class="btn primary large">Login or Register</button>
    			</div>
    		</form>
    	</div>
    </body>
    </html>
    
    

    That should look something like this:

    SimpleTODO Login Page

    SimpleTODO Login Page

    Take note that I’ve included 2 JavaScript files and 2 CSS files here:

    Next, let’s create the login.php file so we store the username and password inside a session on the client.

    
    <?php
    //get the form values
    $username = $_POST['login_username'];
    $userpass = $_POST['login_password'];
    session_start();
    $_SESSION['username'] = $username;
    $_SESSION['userpass'] = $userpass;
    header('Location: todo.php');
    exit();
    
    

    Here, we simply start a session for the user, based on the username and password combination the user will provide. This acts as a simple combination key, which will allow a user to access stored TODO items for a specific combination of both the username and password. We then redirect to todo.php, where we start interacting with the API server. Before we start coding the todo.php file though, let’s first create an ApiCaller class, which will encapsulate all the API calling methods we’ll need, including encrypting the requests.

    Create apicaller.php and put the following inside:

    
    <?php
    class ApiCaller
    {
    	//some variables for the object
    	private $_app_id;
    	private $_app_key;
    	private $_api_url;
    	
    	//construct an ApiCaller object, taking an
    	//APP ID, APP KEY and API URL parameter
    	public function __construct($app_id, $app_key, $api_url)
    	{
    		$this->_app_id = $app_id;
    		$this->_app_key = $app_key;
    		$this->_api_url = $api_url;
    	}
    	
    	//send the request to the API server
    	//also encrypts the request, then checks
    	//if the results are valid
    	public function sendRequest($request_params)
    	{
    		//encrypt the request parameters
    		$enc_request = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $this->_app_key, json_encode($request_params), MCRYPT_MODE_ECB));
    		
    		//create the params array, which will
    		//be the POST parameters
    		$params = array();
    		$params['enc_request'] = $enc_request;
    		$params['app_id'] = $this->_app_id;
    		
    		//initialize and setup the curl handler
    		$ch = curl_init();
    		curl_setopt($ch, CURLOPT_URL, $this->_api_url);
    		curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    		curl_setopt($ch, CURLOPT_POST, count($params));
    		curl_setopt($ch, CURLOPT_POSTFIELDS, $params);
    
    		//execute the request
    		$result = curl_exec($ch);
    		
    		//json_decode the result
    		$result = @json_decode($result);
    		
    		//check if we're able to json_decode the result correctly
    		if( $result == false || isset($result['success']) == false ) {
    			throw new Exception('Request was not correct');
    		}
    		
    		//if there was an error in the request, throw an exception
    		if( $result['success'] == false ) {
    			throw new Exception($result['errormsg']);
    		}
    		
    		//if everything went great, return the data
    		return $result['data'];
    	}
    }
    
    

    We’ll be using the ApiCaller class to send requests to our API server. This way, all the necessary encryption and cURL initialization code will be in one place, and we won’t have to repeat our code.

    • the __construct function takes in three parameters:

      1. $app_id – the APP ID for the client (which is APP001 for the browser client)
      2. $app_key – the APP KEY for the client (which is 28e336ac6c9423d946ba02d19c6a2632 for the browser client)
      3. $api_url – the URL of the API server, which is http://localhost/simpletodo_api/
    • the sendRequest() function:

      1. encrypts the request parameters using the mcrypt library in the same manner that the API server decrypts it
      2. generates the $_POST parameters to be sent to the API server
      3. executes the API call via cURL
      4. checks the result of the API call was successful or not
      5. returns the data when everything went according to plan

    Now, let’s begin with the todo.php page. First off, let’s create some code to retrieve the current list of todo items for the user nikko with the password test1234 (this is the user/password combination we used earlier to test the API server).

    
    <?php
    session_start();
    include_once 'apicaller.php';
    
    $apicaller = new ApiCaller('APP001', '28e336ac6c9423d946ba02d19c6a2632', 'http://localhost/simpletodo_api/');
    
    $todo_items = $apicaller->sendRequest(array(
    	'controller' => 'todo',
    	'action' => 'read',
    	'username' => $_SESSION['username'],
    	'userpass' => $_SESSION['userpass']
    ));
    
    echo '';
    var_dump($todo_items);
    
    

    Go to the index.php page, login as nikko/test1234, and you should see a var_dump() of the TODO item we created earlier.

    TODO item var_dump()

    Congratulations, you’ve successfully made an API call to the API server! In this code, we’ve:

    • started the session so we have access to the username and userpass in the $_SESSION
    • instantiated a new ApiCaller class, giving it the APP ID, APP KEY and the URL of the API server
    • send a request via the sendRequest() method

    Now, let’s reformat the data so it looks better. Add the following HTML to the todo.php code. Don’t forget to remove the var_dump()!

    
    <!DOCTYPE html>
    <html>
    <head>
    	<title>SimpleTODO</title>
    	
    	<link rel="stylesheet" href="css/reset.css" type="text/css" />
    	<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css" />
    	<link rel="stylesheet" href="css/flick/jquery-ui-1.8.16.custom.css" type="text/css" />
    	
    	<script src="js/jquery.min.js"></script>
    	<script src="js/jquery-ui-1.8.16.custom.min.js"></script>
    	
    	<style>
    	body {
    		padding-top: 40px;
    	}
    	#main {
    		margin-top: 80px;
    	}
    	
    	.textalignright {
    		text-align: right;
    	}
    	
    	.marginbottom10 {
    		margin-bottom: 10px;
    	}
    	#newtodo_window {
    		text-align: left;
    		display: none;
    	}
    	</style>
    	
    	<script>
    	$(document).ready(function() {
    		$("#todolist").accordion({
    			collapsible: true
    		});
    		$(".datepicker").datepicker();
    		$('#newtodo_window').dialog({
    			autoOpen: false,
    			height: 'auto',
    			width: 'auto',
    			modal: true
    		});
    		$('#newtodo').click(function() {
    			$('#newtodo_window').dialog('open');
    		});
    	});
    	</script>
    </head>
    <body>
    	<div class="topbar">
    		<div class="fill">
    			<div class="container">
    				<a class="brand" href="index.php">SimpleTODO</a>
    			</div>
    		</div>
    	</div>
    	<div id="main" class="container">
    		<div class="textalignright marginbottom10">
    			<span id="newtodo" class="btn info">Create a new TODO item</span>
    			<div id="newtodo_window" title="Create a new TODO item">
    				<form method="POST" action="new_todo.php">
    					<p>Title:<br /><input type="text" class="title" name="title" placeholder="TODO title" /></p>
    					<p>Date Due:<br /><input type="text" class="datepicker" name="due_date" placeholder="MM/DD/YYYY" /></p>
    					<p>Description:<br /><textarea class="description" name="description"></textarea></p>
    					<div class="actions">
    						<input type="submit" value="Create" name="new_submit" class="btn primary" />
    					</div>
    				</form>
    			</div>
    		</div>
    		<div id="todolist">
    			<?php foreach($todo_items as $todo): ?>
    			<h3><a href="#"><?php echo $todo->title; ?></a></h3>
    			<div>
    				<form method="POST" action="update_todo.php">
    				<div class="textalignright">
    					<a href="delete_todo.php?todo_id=<?php echo $todo->todo_id; ?>">Delete</a>
    				</div>
    				<div>
    					<p>Date Due:<br /><input type="text" id="datepicker_<?php echo $todo->todo_id; ?>" class="datepicker" name="due_date" value="12/09/2011" /></p>
    					<p>Description:<br /><textarea class="span8" id="description_<?php echo $todo->todo_id; ?>" class="description" name="description"><?php echo $todo->description; ?></textarea></p>
    				</div>
    				<div class="textalignright">
    					<?php if( $todo->is_done == 'false' ): ?>
    					<input type="hidden" value="false" name="is_done" />
    					<input type="submit" class="btn" value="Mark as Done?" name="markasdone_button" />
    					<?php else: ?>
    					<input type="hidden" value="true" name="is_done" />
    					<input type="button" class="btn success" value="Done!" name="done_button" />
    					<?php endif; ?>
    					<input type="hidden" value="<?php echo $todo->todo_id; ?>" name="todo_id" />
    					<input type="hidden" value="<?php echo $todo->title; ?>" name="title" />
    					<input type="submit" class="btn primary" value="Save Changes" name="update_button" />
    				</div>
    				</form>
    			</div>
    			<?php endforeach; ?>
    		</div>
    	</div>
    </body>
    </html>
    
    

    It should now look something like this:

    TODO Home

    Pretty cool huh? But this currently does nothing, so let’s begin adding some functionality. I’ll provide the code for new_todo.php, which will call the todo/create API call to create a new TODO item. Creating the other pages (update_todo.php and delete_todo.php) should be very similar to this one, so I’ll leave it up to you to create those. Open up new_todo.php and add the following code:

    
    <?php
    session_start();
    include_once 'apicaller.php';
    
    $apicaller = new ApiCaller('APP001', '28e336ac6c9423d946ba02d19c6a2632', 'http://localhost/simpletodo_api/');
    
    $new_item = $apicaller->sendRequest(array(
    	'controller' => 'todo',
    	'action' => 'create',
    	'title' => $_POST['title'],
    	'due_date' => $_POST['due_date'],
    	'description' => $_POST['description'],
    	'username' => $_SESSION['username'],
    	'userpass' => $_SESSION['userpass']
    ));
    
    header('Location: todo.php');
    exit();
    ?>
    
    

    As you can see, the new_todo.php page uses the ApiCaller again to facilitate the sending the todo/create request to the API server. This basically does the same thing as before:

    • start a session so it has access to the $username and $userpass saved in the $_SESSION
    • instantiate a new ApiCaller class, giving it the APP ID, APP KEY and the URL of the API server
    • send the request via the sendRequest() method
    • redirect back to todo.php
    New TODO!

    Congratulations, it works! You’ve successfully created an API-centric application!


    Conclusion

    There are so many advantages to developing an application that’s built around an API. Want to create an Android application version of SimpleTODO? All the functionality you would need is already in the API server, so all you need to do is just create the client! Want to refactor or optimize some of the classes? No problem — just make sure the output is the same. Need to add more functionality? You can do it wihtout affecting any of the client’s code!

    Though there are some disadvantages like longer development times or more complexity, the advantages of developing a web application in this manner greatly outweight the disadvantages. It’s up to us to leverage on this kind of development today so we can reap the benefits later on.

    Are you planning to use an API server for your next web application, or have you already used the same technique for a project in the past? Let me know in the comments!

Tags: api
Note: Want to add some source code? Type <pre><code> before it and </code></pre> after it. Find out more
  • Kobra

    great work,
    what about using HTTP authentication for securing the API? in this article : “http://net.tutsplus.com/tutorials/php/working-with-restful-services-in-codeigniter-2/ “the author presented a REST codeigniter controler that support HTTP authentication but hi haven’t tell us about using it? Im trying to write a todo application based in his REST_Controler directly accessed by a javascript client with backbone.js so my API are exposed without ApiCaller. so I tried to enforce a HTTP authentication by the client and virifing if user have access in the REST_Controler I wonder if it’s the rite way. I’m trying also to create a html login form instide of the pop-up given by the browser but I can’t. whats your opinion. thx for help.

    • http://nikkobautista.com Nikko Bautista
      Author

      I would suggest using something more secure than HTTP Authentication, like OAuth, which is already an industry standard :)

      Thanks!

  • Ethan

    I get this message after entering my username and password :

    Fatal error: Uncaught exception ‘Exception’ with message ‘Request was not correct’ in /Users/…/Sites/demo/simpletodo_client_browser/apicaller.php:47 Stack trace: #0 /Users/…/…/Sites/simpletodo_client_browser/todo.php(12): ApiCaller->sendRequest(Array) #1 {main} thrown in /Users/…/Sites/demo/simpletodo_client_browser/apicaller.php on line 47

    I really want to follow this tutorial. Nobody else gets has issue ? I thought it had something to do with try/catch, but I’m a beginner.

    • http://www.eventespresso.com/ Seth Shoultes

      I am getting the same error? Anyone figure this out yet?

      • http://www.eventespresso.com Seth Shoultes

        Actually, just found the problem.

        In the simpletodo_client_browser/todo.php you need to change the third parameter in line #1 to whatever URL you are hosting the api at.

  • mmesh

    Hi!
    Great tutorial :)

    Can You please tell me what app did You use to create mockup (“SimpleTODO Mockup” image)?
    I’m in a search for such an utility…

    THNX!

    • http://nikkobautista.com Nikko Bautista
      Author

      Hey :)

      I use Balsamiq. It’s a great tool for mockups – http://www.balsamiq.com

  • http://gieglas.com Constantinos

    Hi there amazing tutorial. Just a couple of questions concerning security in a real life system
    1) In a system where you get the users from the database in the login.php shouldnt there be something to protect from sql injection like

    //get the form values
    $username = mysql_real_escape_string($_POST['login_username']);
    $userpass = mysql_real_escape_string($_POST['login_password']);.

    2) You mentioned in the tutorial Since this is just a demo, we can use any random, 32 character string.. In a live site should we use bigger strings?

    3) Any other concern or issue that should be faced before going into a live environment would be appreciated :-) (and no am not going to copy SimpleTODO in a live site :-) )

    Thanx again, really this has been one of the most helpful tutorials I have ever read.

    • http://nikkobautista.com Nikko Bautista
      Author

      Hey Contantinos,

      1.) You’re correct in saying that you need to protect from SQL injection. The SimpleTODO thing is just a demo project, so I ignored a lot of the usual security measures.

      2.) On live sites, you should definitely use longer strings. You can also concatenate the application id to the string to make it even more unique.

      3.) The hashing method I used is pretty simple. I would opt to go for something like OAuth which is already a industry standard :)

      • http://gieglas.com Constantinos

        Thanx Nikko.

        For the data part would you consider mongoDB instead of an SQL Database for such a web app?

      • http://FallFor.It/ JCS

        Nikko, i just want to thank you for this great post, I’ve been doing some work with this kind of applications and it was helpful to see another approach and not just mine :P.

        Constantinos, you surely can use MongoDB for the data, but you must think about your app, take into considerations the advantages and disadvantages of both NoSQL and SQL Databases and pick the one that suits the best your project, I’ve found myself using relational models for my data, and haven’t been able to use MongoDB on a project, though I would like to, and going to for a personal one ^^

  • http://sangocreative.com Chumang

    Very nice tutorial. I just tried to download the source files and I get a “server not found” error. Could you have a look at this please? I really need this for a project I am working on.

    • http://rahulprasad.com Rahul Prasad

      Hello, a few questions. I am not criticizing security measures taken in this tutorials, I just want to discuss about it just to get more exposure.

      1. Shouldn’t user be registered at server instead of client?

      2. Whats the need of sending password to server if user is registered in client?

      3. Is it safe to send password to server? If not what should be alternative approach?

      4. How will server make sure its a human sending request? How to implement captcha in stateless system?

      5. How do I implement javascript client for this? Wont the key be visible to user?

      Thank you :)

  • TheRaven

    evolusPencil Project hosted at Google provides a really awesome tool allowing the prototyping of system GUI with a nice set of templates to choose from. I noticed the prototype illustration in this tutorial and immediately remembered the tool – get it, use it, it’s free and is under constant development. It exports to SVG and html formats among others. All very important aspects when planning a project or a framework/api interface and clients want pictures to go off of for example.

  • http://www.highonphp.com sixeightzero

    Great write up! Been working on something similar, but will self-provision a device based on IP range or mobile application name from IOS and Droid devices..

  • 1988

    I hope Nettuts will also have tuts on API rate limiting as a continuation of this tutorial. I’m a newbie on creating an API… and this tutorial really helped me understand. The next step is to secure the API…. which I am finding hard to grasp…. Membase, memcached, or DB approach. I’m kind of confused how to do it….

  • Jesús Flores

    ¿ Could you tell us something about what design patterns you have used in this application design ? Just to get a global idea on how the architecture is build in one stroke… I can see a typical front controller, and im wondering you was using an Active Record for the CRUD Capabilities… Thank you.

  • http://freakify.com Ahmad Awais

    Nice introduction to API

  • Miha

    I’m getting this erorr :(

    Fatal error: Uncaught exception ‘Exception’ with message ‘Request was not correct’ in C:\xampp\htdocs\API\demo\simpletodo_client_browser\apicaller.php:47 Stack trace: #0 C:\xampp\htdocs\API\demo\simpletodo_client_browser\todo.php(12): ApiCaller->sendRequest(Array) #1 {main} thrown in C:\xampp\htdocs\API\demo\simpletodo_client_browser\apicaller.php on line 47

    what is wrong?

  • arnie

    hi, thanks for the great article. it helped me to understand a different way of developenig web applications.

    i have a question. right now im working on my own web service. i also plan to run it through smartphones / tablets (maybe an IOS, Android application), maybe develop a Windows Widget etc. Im the business analyst and the owner of the project, so i dont understand really deeply the development techniques.

    We have chosen an approach, where we will define the whole application logic in database procedures (objects), so the website on the front will just “ask” for data and the procedure will return it. of course there will be also some logic on the FE (website) but the majority will be part of the database (it is faster to change it, no outage required, procedure can be called from anywhere etc..) do you think it is enough to do it this way or you`d rather do it through the mentioned API`s or a combination of it ?

    I`d like to gather opinions from several sources to find the best way – im in the application and database design phase and we are gently advancing to development phase :)

    thank you very much for your time ;)
    arnie

  • samuel

    Hi,

    What could you say about perfomance ?
    Is this kind of design will be slower than a standard one (because of the HTTP requests) ?

  • Ali

    Hi, thnks for this great tutorial.

    But i can’t make the source code work.

    When trying to login or register, am having this error.

    Fatal error: Uncaught exception ‘Exception’ with message ‘Request was not correct’ in C:\wamp\www\demo\simpletodo_client_browser\apicaller.php:52 Stack trace: #0 C:\wamp\www\demo\simpletodo_client_browser\todo.php(12): ApiCaller->sendRequest(Array) #1 {main} thrown in C:\wamp\www\demo\simpletodo_client_browser\apicaller.php on line 52

    I try to modify simpletodo_client_browser/todo.php by changing the third parameter in line #1 to the URL am hosting the api, but nothing change.

    Am running the application on windows using wamp server.

    Thnk you for your help in advance.

  • ely

    j’ai cette erreur . quelqu’un peut m’aider svp

    Fatal error: Call to undefined function mcrypt_encrypt() in C:\wamp\www\simpletodo_client_browser\apicaller.php on line 24

    • ely

      help me

      Fatal error: Call to undefined function mcrypt_encrypt() in C:\wamp\www\simpletodo_client_browser\apicaller.php on line 24

  • ely

    helpppppppppppppppp

    Fatal error: Call to undefined function mcrypt_encrypt() in C:\wamp\www\simpletodo_client_browser\apicaller.php on line 24

  • George

    Great tutorial! Thanks!
    Just a question though, how is it possible to create a API centric application using a framework like Codeigniter?
    What changes should be made to this tutorial to implement such a solution?

    • http://nikkobautista.com Nikko Bautista
      Author

      Hey George!

      Thanks for the compliments. If you were using this with CodeIgniter, you’d have to take advantage of some CI’s built-in functionality to make the API server better:

      - CI’s Encryption classes
      - CI Rest Controller module
      - CI Hooks

      There would be a lot of changes, but CI is an easy framework to get an API server working :)

  • http://www.webmajix.tk netesy

    please how do i add a database login sytem to the api and how do i make my site use4s get there own api key and id

  • Hrot

    I am trying to run this on my localhost using wampserver, but I can’t get the files from the downloaded sourcepack to work. Are there any settings for my server that I need to know of?
    I am getting a fatal error: Uncaught exception ‘Exception’.

    Could anyone help this newbie out?

    • Hrot

      Forgot to mension the exception itself: Invalid Username or Password. I’ve noticed that the nikki/test1234 log-in works. Any other combination doesn’t. Is it correct that there is no ‘register’ user function in this demo?

  • Cshekhar

    Hey….its a great tutorial….hoewever i am a in love with python and django….can you make a similiar tutorial for python!!!!….thanks

  • Ritesh

    Hi Nikko;
    Thanks for writing this tutorial by which the beginner api-server developer like me.
    Thanks again alot and plz keep on sharing such code snippet for beginners.
    cheers.

  • Hadi

    i get this error after input username and password

    “Fatal error: Call to undefined function curl_init() in C:\xampp\htdocs\simpletodo_client_browser\apicaller.php on line 33″

    • Hadi

      It works already.. Great..
      but what if i want to store and retrieve the data in database?
      thanx…

    • jesper

      Check if curl is enabled on your local server

  • http://blog.01tchat.com Peter

    Very good article!
    Thanks!

  • jesper

    good article! I’ve been repeating on reading this :)

  • tomobuddy

    Nice ….
    Thank You for the tutorial :)

  • dan

    error:

    {“success”:false,”errormsg”:”Application does not exist!”}

    in simpletodo api ?

  • Pedro

    Great tutorial, very insightful.
    Just a question: if you are programming a session-less app, what will happen if you open some internal link on a new tab, for example if you open “Create new TODO” on a new tab?
    I’m imagining that you have no way to maintain the app status with this session-less approach or am I wrong?

  • Gordon

    Nice Tutorial !

  • Jashid

    Good Reference for a Starter in API Method

  • Jashid KT

    Good Reference for a Starter in API Method

  • ROCKESH RONITH

    Hello !

    i just want to say: when we will need to used API in our Peoject… i m really beginners for creating a API…plz give some suggestion to me……….

    Thanxx & Regards

  • http://www.baardmuts.nl Leroy Meijer

    First I must say, what a great tutorial and for a long time I was getting an error like: Fatal error: Uncaught exception ‘Exception’ with message ‘Request was not correct’ in /var/www/simpletodo_client_browser/apicaller.php:47 Stack trace: #0 /var/www/simpletodo_client_browser/todo.php(12): ApiCaller->sendRequest(Array) #1 {main} thrown in /var/www/simpletodo_client_browser/apicaller.php on line 47

    My solution, what worked for me was the following:
    when you have this line:
    $apicaller = new ApiCaller(‘APP001′, ’28e336ac6c9423d946ba02d19c6a2632′, ‘http://localhost/api%20van%20site/simpletodo_api/’); Make sure the api_url parameter has NO spaces but replace this with %20

    Gr. Leroy

  • Tom Smith

    Great tutorial. Running in to a small non-problem. The PHP manual spec for function mcrypt_encrypt specifically says that when using ECB mode, the IV does not need to be set, and yet I am still getting this warning:

    mcrypt_encrypt() [function.mcrypt-encrypt]: Attempt to use an empty IV, which is NOT recommend

    I don’t like ignoring warnings. Let me know how you would move forward.

  • Peter

    I know this tutorial is almost a year old, but I’ve only just found it. In case people are still wondering how to create a new user from /simpletodo_client_browser/index.php I’ve fixed the problem, as described below.

    Within /simpletodo_api/models/TodoItem.php:

    1. Comment out lines: 64, 65 and 66

    2. Comment out line: 105

    3. On line 106 add: mkdir(DATA_PATH.”/{$userhash}”);

    This will allow users to either login/register from the index page as the button suggests they can.

    • Ash

      When I do this, I get an error message (It basically ruins the app) Any other ideas?

  • http://www.teknoinek.com Ugur

    Thank you. May i translate this article for my blog ?

  • Kristian Matthews

    I am developing a framework for creating a REST API using PHP and MySQL.

    Development has only just begun and I’m looking for contributors, please visit the GitHub project:
    https://github.com/PlugInStudios/api-framework

    • SirElroyDaxter

      What is the philosophy of your framework? Have you tried out Slim Framework? I use that to create my JSON REST api. Or you might want to contribute to http://www.phreeze.com, now that is the bomb!

    • IXAPI

      You may want to give a try to https://ixapi.com. Not only that you can create a RESTful API instantly, but you get it all secure together with the database and file storage.

  • Umar

    Thanks a lot for a very nice tutorial.

    I have only one issue. I am continuously getting this message:

    “PHP Warning: mcrypt_encrypt(): Attempt to use an empty IV, which is NOT recommend in /web/sampleapi/client/apicaller.php”

    Please help on this asap.

    Thanks

    Umar

  • ozon

    Nice tutorial but your code has many bugs. I just spent 6 hours debuging it .

  • http://www.facebook.com/007ketul Ketul Shah

    hy how to secure restful api if i want to do operation like get,post,delete,update using javascript ?

    • IXAPI

      The best way to do it is using signed requests. Basically you can take a look on how Twitter does it or any other OAuth 1.0 client.

      IXAPI (https://ixapi.com)

  • developers

    yes your tutorial is nice but have lots of bugs.

  • IXAPI

    Very good article, a few bugs though. You may want to give a try to IXAPI (https://ixapi.com) that simplifies a lot the work described in the article. :-)

  • sunil

    Hi finally i am unable to create the API.

    getting the following errors after this line of tutorial ” Open the index.php file again, and then update it with the following code: ” —

    Notice: Undefined index: controller in /var/www/api/index.php on line 15

    Notice: Undefined index: action in /var/www/api/index.php on line 19

    {“success”:false,”errormsg”:”Controller is invalid.”}

    Please help ——

  • http://www.funbench.com/ Muhammad Usman

    Its a difficult task to create an application, but you have made it easy by the above tutorial.

  • CapeFurSeal

    Great tutorial. Where did you store the username and password? I cannot find the access details? I tried nikko and test1234 that does not work?

  • Elsonwu

    Very nice tutorial

  • Chella Durai

    Awesome Tutorial… Clear explanations…. Thanks for sharing….