In this blogpost I will describe the definition of RESTful API, also I will provide another patterns which are used to build the API.
So let's start...
Imagine, that we are building application, which needs to interact with another application somewhere in internet. For example when we are posting the image on the Facebook we, can click and button "publish" and the photo will be published. Unfortunatelly we can not use this approach with another application.
Instead of that we are creating some interface, which is opened for another applications, and this another application ( one or many ) can "tell" our application what shall we do: create image, delete image, etc.
This interface for interaction called API ( Application Programming Interface ).
There are many patterns are used in building API. They are:
If our case, we are working with RESTful API design pattern, so let's describe what RESTful API do. It:
When we are building RESTful API pattern we must follow to the https method and what they do:
Create | POST |
Read | GET |
Update | PUT & PATCH |
Delete | DELETE |
And also we need to give a correct code in the response:
Status code | Meaning |
200 OK | Request was successful. |
301 Moved Permanently | For SEO purposes when a page has been moved and all link equity should be passed through. |
401 Unauthorized | Server requires authentication. |
403 Forbidden | Client authenticated but does not have permissions to view resource. |
404 Not Found | Page not found because no search results or may be out of stock. |
500 Internal Server Error | Server side error. Usually due to bugs and exceptions thrown on the server side code. |
503 Server Unavailable | Server side error. Usually due to a platform hosting, overload and maintenance issue. |
Some common REST API design patterns include:
And in the end I will show the example of routes in Laravel which were built according the RESTful API design pattern.
<?php
use App\Http\Controllers\ProductsApiController;
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| API Routes
|--------------------------------------------------------------------------
|
| Here is where you can register API routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| is assigned the "api" middleware group. Enjoy building your API!
|
*/
Route::get('/posts', [ProductsApiController::class, 'index']);
Route::get('/posts/{post}', [ProductsApiController::class, 'get']);
Route::post('/posts', [ProductsApiController::class, 'store']);
Route::put('/posts/{post}', [ProductsApiController::class, 'update']);
Route::delete('/posts/{post}', [ProductsApiController::class, 'destroy']);