RESTful API - URL

Penjelasan

URL

  • Uniform Resource Locator
  • alamat yang digunakan di web untuk mengakses sebuah resouce
  • Resource bisa berupa HTML, CSS, JavaScript, dokumen, gambar, dll
  • Contoh : https://www.tantua.com/path/to/myfile.html?key1=value1&key2=value2#SomewhereInTheDocument

Struktur URL

  • Protocol
    • http://, https://
  • Domain
    • www.tantua.com
  • Port
    • :80, :443
  • Path
    • /path/to/myfile.html
  • Parameter
    • ?key1=value1&key2=value2
  • Anchor
    • #SomewhereInTheDocument

 

Poin / Ide

Scroll to Top