Answers for "what is the difference between uri and url"

6

difference between URI and URL

The terms “URI” and “URL” are often used interchangeably,
 but they are not exactly the same.

1.A URI is an identifier of a specific resource. Like a page,
 or book, or a document.
2.A URL is special type of identifier that also tells you how to 
  access it, such as HTTPs, FTP, etc.—like https://www.google.com.
3.If the protocol (https, ftp, etc.) is either present or implied for
 a domain, you should call it a URL—even though it’s also a URI.
Posted by: Guest on April-07-2021
9

what is uri

URI stands for Uniform Resource Identifier
The purpose of URI is to locate
a resource on the server 
hosting the web service.

A URI format is:
<protocol>://<servicename>/<ResourceType>/<ResourceID>
Posted by: Guest on January-14-2021

Code answers related to "what is the difference between uri and url"

Browse Popular Code Answers by Language