You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
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.
The text was updated successfully, but these errors were encountered:
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.
The text was updated successfully, but these errors were encountered: