Skip to content
Snippets Groups Projects
Commit e780c58e authored by Vermaat's avatar Vermaat
Browse files

Merge pull request #364 from mutalyzer/encode-params

Document the need to encode query string params
parents 0718edbd dcdbf420
No related branches found
No related tags found
No related merge requests found
......@@ -67,4 +67,13 @@ For now, you can work from this example using the above mentioned
HTTP/RPC+JSON web service mirrors the functionality of the SOAP web service.
</p>
<p>
<strong>Note:</strong> Since method parameters are passed as HTTP query string
parameters,
they <a href="https://en.wikipedia.org/wiki/Query_string#URL_encoding">need to
be properly encoded</a> as such. Depending on the programming language used,
there most likely is a library available to do
this. <a href="http://meyerweb.com/eric/tools/dencoder/">Here's an
interface</a> to do it directly from the browser for testing purposes.
{% endblock content %}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment