REST FAQ

PUT Request: ID in body or URI? https://stackoverflow.com/questions/27900041/rest-put-ids-in-body-or-not https://restfulapi.net/rest-put-vs-post/ https://softwareengineering.stackexchange.com/questions/263925/to-include-a-resource-id-in-the-payload-or-to-derive-from-uri In general: PUT should be idempotent and mirror behavior of GET

October 17, 2022 · 21 words · Peter Dieleman

Special Chars in REST API URIs

Sources https://stackoverflow.com/questions/39680082/can-i-prefix-with-dollar-sign-my-url-query-string-parameters-safely https://stackoverflow.com/questions/20050114/what-does-dollar-sign-do-in-url

May 19, 2022 · 3 words · Peter Dieleman

Date format JSON

https://stackoverflow.com/questions/10286204/what-is-the-right-json-date-format

May 16, 2022 · word · Peter Dieleman

Feign Client converting GET to POST

Sources https://stackoverflow.com/questions/53340164/feignclient-converts-get-method-to-post https://stackoverflow.com/questions/53340164/feignclient-converts-get-method-to-post https://stackoverflow.com/questions/58468968/feign-client-get-request-throws-method-not-allowed-request-method-post-not Presence of requestbody automatically converts it to a POST

May 12, 2022 · 13 words · Peter Dieleman