A Uniform Resource Identifier (URI) is a string of characters that unambiguously identifies a particular resource. To guarantee uniformity, all URIs follow a predefined set of syntax rules,[1] but also maintain extensibility through a separately defined hierarchical naming scheme (e.g. "http://").
Such identification enables interaction with representations of the resource over a network, typically the World Wide Web, using specific protocols. Schemes specifying a concrete syntax and associated protocols define each URI. The most common form of URI is the Uniform Resource Locator (URL), frequently referred to informally as a web address. More rarely seen in usage is the Uniform Resource Name (URN), which was designed to complement URLs by providing a mechanism for the identification of resources in particular namespaces.
The common parts of a URI are described below.
foo://example.com:8042/over/there?name=ferret#nose
\_/ \______________/\_________/ \_________/ \__/
| | | | |
scheme authority path query fragment
There are 5 parts in a URI:
- scheme: the scheme of the URI (related to protocol stuff, ex: http, https, ftp...).
- authority: in URLs, they are composed of 3 parts.
- path: the path to the resource being accessed.
- query: key-value pairs with relevant encoded information to the server.
- fragment: information that is not sent to the process.
In the authority there are 3 parts:
john:[email protected]:8042
\______/ \_________/ \__/
| | |
userinfo host port
- userinfo: relevant information to an authentication
- host: the domain name of the resource
- port: The TCP port that the resource is being served
And URI is what we described earlier. A URI component is a string sequence that can encode a URI inside a URI.
decoding a string like this
http://google.com/path?key=http://google.com
would be ambiguous, so the relevant characters like:, /, @, =, & and # are encoded to avoid ambiguity while decoding.
it's simple just copy and paste encode.h to your includes directory and add #include "encode.h" to your sources and use the function as you wish.
Could you provide also decoding functions ? I think this could improve your gist. Thank you.