Go Package net/http: Difference between revisions
Jump to navigation
Jump to search
Line 21: | Line 21: | ||
=Registering Handlers Generated by oapi-codegen from an OpenAPI Specification= | =Registering Handlers Generated by oapi-codegen from an OpenAPI Specification= | ||
{{Internal|Oapi-codegen#Code_Generation_for_OpenAPI_Specification_Path/Operation_Combinations|<tt>oapi-codegen</tt> Server Code Generation}} |
Revision as of 21:48, 26 January 2024
External
Internal
Overview
Reading the Request Body
TO PROCESS:
- https://www.alexedwards.net/blog/how-to-properly-parse-a-json-request-body
- Working example in ovidiu-feodorov/go-micros/blob/develop/metadata/internal/handler/http/http.go
- JSON_in_Go#With_a_Reader
Decoding to JSON only works if the HTTP requests has a "Content-Type: application/json" header, otherwise the decoding fails with an EOF error.