summaryrefslogtreecommitdiff
path: root/oauthlib
diff options
context:
space:
mode:
authorJonathan Huot <JonathanHuot@users.noreply.github.com>2019-05-06 16:12:23 +0200
committerGitHub <noreply@github.com>2019-05-06 16:12:23 +0200
commit3644d7b58249420ef046b5694ad0e390a14bf87d (patch)
treefc478dacf8b64acb2525387b9c4657ef34405ff9 /oauthlib
parentd4d3f1088dc943a83641c9e86b7a09d98f6adce8 (diff)
parentc376e2797171ae06efa5808c9b8e3fae2fd0579b (diff)
downloadoauthlib-3644d7b58249420ef046b5694ad0e390a14bf87d.tar.gz
Merge branch 'master' into oidc-hashesoidc-hashes
Diffstat (limited to 'oauthlib')
-rw-r--r--oauthlib/oauth1/rfc5849/endpoints/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/oauthlib/oauth1/rfc5849/endpoints/base.py b/oauthlib/oauth1/rfc5849/endpoints/base.py
index 9702939..ecf8a50 100644
--- a/oauthlib/oauth1/rfc5849/endpoints/base.py
+++ b/oauthlib/oauth1/rfc5849/endpoints/base.py
@@ -10,7 +10,7 @@ from __future__ import absolute_import, unicode_literals
import time
-from oauthlib.common import Request, generate_token
+from oauthlib.common import CaseInsensitiveDict, Request, generate_token
from .. import (CONTENT_TYPE_FORM_URLENCODED, SIGNATURE_HMAC, SIGNATURE_RSA,
SIGNATURE_TYPE_AUTH_HEADER, SIGNATURE_TYPE_BODY,
@@ -67,7 +67,7 @@ class BaseEndpoint(object):
def _create_request(self, uri, http_method, body, headers):
# Only include body data from x-www-form-urlencoded requests
- headers = headers or {}
+ headers = CaseInsensitiveDict(headers or {})
if ("Content-Type" in headers and
CONTENT_TYPE_FORM_URLENCODED in headers["Content-Type"]):
request = Request(uri, http_method, body, headers)