From abe3b88f06196e0ebf9e0f7f5458272640f960c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Fa=C3=9Fbender?= Date: Fri, 21 Jan 2022 20:50:59 +0100 Subject: [PATCH] Clarify that params are urlencoded Params are in all cases urlencoded and passed to either the URL or HTTP body with additional headers. This documentation change now reflects this to avoid confustion if the configuration needs to be urlencoded or not. --- doc/source/ics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/ics.md b/doc/source/ics.md index d03a815a..6bdf2fff 100644 --- a/doc/source/ics.md +++ b/doc/source/ics.md @@ -79,7 +79,7 @@ Need to be `GET` or `POST`. **params**
*(dict) (optional, default: None)* -Dictionary, list of tuples or bytes to send in the query string for the HTTP GET request. Only used if `url` is specified, not used for `file`. +Dictionary, list of tuples or bytes to send in the query string for the HTTP request. This gets urlencoded and either attached to the raw URL when GET method is used or send with `Content-Type: application/x-www-form-urlencoded` and a automaticly generated `Content-Length` header as POST method HTTP body. Only used if `url` is specified, not used for `file`. **year_field**
*(string) (optional, default: None)*