Introduction
This tutorial is based on [Project Template] Web API Server 3.
Installation
GET
I will update this tutorial again from time to time.
Please do not post any question on this thread.
Always start a new question with the name Web API Server 3 or post your question here : [Q&A] Web Api Server 3
This tutorial is based on [Project Template] Web API Server 3.
Installation
- Download and save Web API Server (3.00).b4xtemplate file into B4J Additional Libraries folder.
- You also need to download WebApiUtils.b4xlib (v3.02) and save inside the same folder.
- It is recommended to use this template with MiniORMUtils.b4xlib (v1.14) which is a dependency by default.
You can put this library inside B4X Additional Libraries folder since it is a cross platform library.
Note: You can also use MinimaListUtils library or write your own SQL code using jSQL library. - By default the template is based on SQLite database as backend.
Therefore you need sqlite-jdbc driver in your B4J or B4X Additional Libraries folder. B4J comes with sqlite-jdbc-3.7.2 as Internal Library. - If you want to use MySQL database, you need to use MySQL jdbc driver and put inside B4J Additional Libraries folder. e.g mysql-connector-java-5.1.49
- Once all the required libraries and template are in place, you can start B4J IDE.
- Select from File menu, New, Web API Server (3.x)
- Enter the name of your project as you like. Then click OK.
- Now the project is ready to run as it is.
- Click menu Project, Compile & Run (F5) or the play button on the toolbar.
- Hover you mouse pointer to the AppStart sub and click on the highlighted link to open the app on your web browser.
- The browser will open and load the index page.
It is a CRUD web application where you can add a new product (C), search for a product (R), edit an existing product (U) and delete a product (D). - It has already generated some common APIs following the RESTful API principal.
To see the list of APIs, click the API link with a gear icon on top navigation bar.
- You will be redirected to the API documentation page.
You will see there are endpoints such as GET, POST, PUT and DELETE which are represented in different colours.
- You can click on any item to expand the section.
GET
- Let's try to perform our first GET request with an id parameter.
Click on the second end point labeled GET /api/categories/:id - Edit the Path by replacing the :id parameter with 2 and click on the green Submit button.
- The form will send an AJAX request to the API server and return a JSON response (Code 200 for Success).
- To test a POST end point, click the third item with labeled POST /api/categories.
Copy the sample format from the left and paste in the Body textarea.
- Edit the content, i.e value of the category name in the illustration and click the yellow Submit button.
- You may follow the convention to return code 201 Created for new item added to the resource.
For this demo, it is set to return a simple response and it doesn't support text Created but display success as default text.
You need to set Simple Response to False in server configuration to return code 201 response for your client apps.
I will update this tutorial again from time to time.
Please do not post any question on this thread.
Always start a new question with the name Web API Server 3 or post your question here : [Q&A] Web Api Server 3
Last edited: