- Hands-On Full:Stack Web Development with ASP.NET Core
- Tamir Dresher Amir Zuker Shay Friedman
- 171字
- 2021-06-10 19:37:27
Building REST APIs with ASP.NET Core Web API
REST is an architectural style for implementing communication between the application client and server over HTTP. RESTful APIs use HTTP verbs (POST, GET, PUT, DELETE, and so on) to dictate the operation to be performed (Create, Read, Update, Delete) by the server on the domain entity. The REST style has become the de facto standard for creating services in modern application development. This makes it easy to use and consume services in any technology and on any platform, such as web frontends, desktop applications, or other web services.
In this chapter, you'll learn how to create RESTful APIs using ASP.NET Core. We will cover the following topics:
- An overview of REST APIs with the ASP.NET Core API
- Inspecting and debugging your API with Postman and Fiddler
- Defining routing rules in your API
- Binding data into model types and validating them
- Generating a response for different types
We'll first start with an overview of how REST APIs are implemented in ASP.NET Core.
推薦閱讀
- 數據通信網絡實踐:基礎知識與交換機技術
- Building E-commerce Sites with VirtueMart Cookbook
- Hands-On Industrial Internet of Things
- 重新定義Spring Cloud實戰
- 物聯網安全與深度學習技術
- 無人機通信
- Wireshark網絡分析就這么簡單
- Kong網關:入門、實戰與進階
- 網絡AI+:2030后的未來網絡
- 互聯網+思維與創新:通往未來的+號
- 5G+區塊鏈
- Qt5 Python GUI Programming Cookbook
- Python API Development Fundamentals
- Microservices Development Cookbook
- Hands-On Microservices:Monitoring and Testing