From 3c6f6e83d19b509bc235773f55a817eccd52a12f Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Mon, 18 Apr 2016 20:54:56 +0100 Subject: [PATCH] WebAPI: fix param type serialization --- steam/webapi.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/steam/webapi.py b/steam/webapi.py index 457f85b..2a1eb2e 100644 --- a/steam/webapi.py +++ b/steam/webapi.py @@ -21,6 +21,7 @@ All globals params (``key``, ``https``, ``format``, ``raw``) can be specified on "success" "1" } """ +import json from steam.util.web import make_requests_session DEFAULT_PARAMS = { @@ -67,6 +68,13 @@ def webapi_request(path, method='GET', caller=None, params={}, session=None): if onetime['format'] not in ('json', 'vdf', 'xml'): raise ValueError("Expected format to be json,vdf or xml; got %s" % onetime['format']) + # serialize some parameter types properly + for k, v in params.items(): + if isinstance(v, bool): + params[k] = 1 if v else 0 + elif isinstance(v, (list, dict)): + params[k] = json.dumps(v) + # move params to data, if data is not specified for POST # simplifies code calling this method kwargs = {'params': params} if method == "GET" else {'data': params}