atc-net / atc-rest-api-generator

A REST API code generator from OpenAPI Specification in YAML or Json file format
https://atc-net.github.io/repository/atc-rest-api-generator
MIT License
19 stars 4 forks source link

Handle reserved characters in the request URI #106

Open kimlundjohansen opened 3 years ago

kimlundjohansen commented 3 years ago

Is your feature request related to a problem? Please describe. Many URI include components consisting of or delimited by, certain special characters. These characters are called "reserved", since their usage within the URI component is limited to their reserved purpose. If the data for a URI component would conflict with the reserved purpose, then the conflicting data must be escaped before forming the URI.

Reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","

Describe the solution you'd like Create commonly known constants for each reserved character that can be sent instead by the client and interpreted by the server.