Versions Compared

Key

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

...

Section
titleurlencode strings
Tip Box

Using cURL it is necessary that the strings of the

System Link
file/Uniform_Resource_Locator
system-idwikipedia-de
labelQuery
-part of an URL are correctly urlencoded.

Code Block
e.g. ?where=$<Dokumenttyp>=[it-service] is not a valid query string

So the string following the equal sign must be urlencoded e.g using the linux-urlencode command (linux-urlencode):

Code Block
myuser@home ~ # urlencode "$<Dokumenttyp>=[it-service]"
%24%3CDokumenttyp%3E%3D%5Bit-service%5D

This results to the following complete query string:

Code Block
?where=%24%3CDokumenttyp%3E%3D%5Bit-service%5D

...