Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Requirement: The execution user/server of the application (operating system user, not the currently logged-in user) must be able to reach the desired endpoint.

Info

All these characters :/?#[]@ are part of the generic syntax for a URI (defined in RFC 3986) and must be replaced with there corresponding URL / percent encoded value. In our example [ and ] got replaced by %5B and %5D. Check out https://www.w3schools.com/tags/ref_urlencode.ASP if you want to check your URI

...

Variant 1: REST CALL in JS

...