Type:Uri: Difference between revisions

From Resonite Wiki
Added technical information, added see also section. Added links and style.
Used a different IPv6 example leading to example.com
 
(4 intermediate revisions by the same user not shown)
Line 14: Line 14:


=== Port Numbers ===
=== Port Numbers ===
When entered correctly, port numbers can be added to the URI string like this: <code><nowiki>http://127.0.0.1:5000</nowiki></code>
When entered correctly, port numbers can be added to the URI string like this: <code><nowiki>http://127.0.0.1:5000/</nowiki></code>
* (TODO: Why is <code><nowiki>http://127.0.0.1:80</nowiki></code> not valid? Might need "https")
* (TODO: Why is <code><nowiki>http://127.0.0.1:80/</nowiki></code> not valid? Might need "https")


=== HTTP/HTTPS ===
=== HTTP/HTTPS ===
Both <code>http</code> and <code>https</code> while part of the URI string is valid.
Both <code>http</code> and <code>https</code> while part of the URI string is valid.
=== IPv6 ===
For imputing an IPv6 in a URI field, here is what it should look like:
* <code><nowiki>http://[2606:2800:21f:cb07:6820:80da:af6b:8b2c]/</nowiki></code> (Leads to example.com)
* <code><nowiki>http://[0000:0000:0000:0000:0000:0000:0000:0001]</nowiki></code>, <code><nowiki>http://[0:0:0:0:0:0:0:1]</nowiki></code>, or <code><nowiki>http://[::1]</nowiki></code> (loopback address)
{{Note|Doing any loopback address in IPv6 will auto compress it into <code><nowiki>http://[::1]</nowiki></code> for you.|information}}


== See Also ==
== See Also ==
* Wikipedia's definition on [https://en.wikipedia.org/wiki/Uniform_Resource_Identifier Uniform Resource Identifier (URI)]
* Wikipedia's definition on [https://en.wikipedia.org/wiki/Uniform_Resource_Identifier Uniform Resource Identifier (URI)]
* Wikipedia's definition on [https://en.wikipedia.org/wiki/URL URL]
* Wikipedia's definition on [https://en.wikipedia.org/wiki/URL Uniform Resource Locator (URL)]
* Wikipedia's definition on [https://en.wikipedia.org/wiki/IPv4 IPv4]
* Wikipedia's definition on [https://en.wikipedia.org/wiki/IPv6 IPv6]


[[Category:Type]]
[[Category:Type]]

Latest revision as of 16:56, 15 September 2024

A Uri Is similar to a URL string. URI is known as a Uniform Resource Identifier, and is used to identify assets and their locations rather than a webpage or site. Since website images are assets in Resonite, URLs are commonly misconceived as being URIs.

Technical

Input And Fields

When typing into any field of this type, make sure that it is formatted correctly or it will fail, examples include:

  • http://www.google.com/
  • http://127.0.0.1/

Inputs that will fail if entered like this (or revert back to the last known valid input, including null):

  • www.google.com
  • 127.0.0.1
  • localhost

Port Numbers

When entered correctly, port numbers can be added to the URI string like this: http://127.0.0.1:5000/

  • (TODO: Why is http://127.0.0.1:80/ not valid? Might need "https")

HTTP/HTTPS

Both http and https while part of the URI string is valid.

IPv6

For imputing an IPv6 in a URI field, here is what it should look like:

  • http://[2606:2800:21f:cb07:6820:80da:af6b:8b2c]/ (Leads to example.com)
  • http://[0000:0000:0000:0000:0000:0000:0000:0001], http://[0:0:0:0:0:0:0:1], or http://[::1] (loopback address)
Doing any loopback address in IPv6 will auto compress it into http://[::1] for you.

See Also