Type:Uri: Difference between revisions

From Resonite Wiki
Accidental duplicate in the list.
Added 2 links to the see also section.
Line 29: Line 29:
== 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]]

Revision as of 16:31, 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://[2a12:4946:9900::f00]/
  • 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