- Building RESTful Web Services with PHP 7
- Haafiz Waheed ud din Ahmad
- 325字
- 2021-07-03 00:02:18
Response type
In the current world, many people think that the response of a RESTful web service must be a JSON or text having a JSON string. However, we can also use XML in response to a RESTful web service request. A lot of people use JSON in response because it is lightweight and easy to parse. But at the same time, this is just a matter of preference, and depends on the requirement and has nothing to do with REST standards.
Both XML and JSON are ways to format data. XML stands for Extensible Markup Language, having markup syntax. While JSON stands for JavaScript Object Notation, with JavaScript object-like syntax. For more understanding of JSON, please check out http://www.json.org/
We will shortly look into the case study of a blog and will see request and response examples. In this book, will use JSON as the response type, as JSON is simpler than XML. And while developing new applications, we mostly use JSON because it is lightweight and easy to understand. As you can see in the following examples, the same data in JSON is much simpler than XML and only has content that matters.
Here, we are trying to show the data of books having one or more authors:
XML:
<books>
<book>
<name>Learning Neo4J</name>
<authors>
<author>Rik Van Bruggen</author>
</authors>
</book>
<book>
<name>
Kali Linux – Assuring Security by Penetration Testing
</name>
<authors>
<author>Lee Allen</author>
<author>Tedi Heriyanto</author>
<author>Shakeel Ali</author>
</authors>
</book>
</books>
Now, let's look at the same example in JSON:
{
books: [
{
name:"Learning Neo4J",
authors:["Rik Van Bruggen"]
},
{
name:"Kali Linux – Assuring Security by Penetration Testing",
authors:["Lee Allen", "Tedi Heriyanto", "Shakeel Ali"]
}
]
}
You can clearly see from the preceding example, that XML and JSON both convey the same information. However, in JSON it is much easier as well as it needs a lot less words to show the same information.
Hence in the rest of book, we will be using JSON as the response type of our RESTful web services.
- Kali Linux Web Penetration Testing Cookbook
- Android Jetpack開發:原理解析與應用實戰
- Magento 2 Theme Design(Second Edition)
- PowerCLI Cookbook
- Vue.js快速入門與深入實戰
- PHP+MySQL網站開發技術項目式教程(第2版)
- C語言程序設計案例式教程
- 深度學習:算法入門與Keras編程實踐
- C語言實驗指導及習題解析
- Redis Essentials
- 程序設計基礎教程:C語言
- Mastering JavaScript High Performance
- Image Processing with ImageJ
- Instant GLEW
- 金融商業數據分析:基于Python和SAS