keystone/releasenotes/notes/oauth1-headers-content-type-9a9245d9bbec8f8e.yaml
Dave Chen 72b274defc Replace the content type with correct one
The content type `application/x-www-urlformencoded` used in
OAuth1 extension is not spelled correctly, the correct one
should be `application/x-www-form-urlencoded` according to
W3C recommendation [1] and implementaion in oauth1 lib [2].

[1] https://www.w3.org/TR/html401/interact/forms.html#h-17.13.4.1
[2] https://github.com/idan/oauthlib/blob/master/oauthlib/oauth1/rfc5849/__init__.py#L39

Change-Id: I9ead0a633e3801f5150685c44b1174d3b4dc408c
2016-08-16 21:26:06 +08:00

7 lines
239 B
YAML

---
other:
- >
The response's content type for creating request token or access token
is changed to `application/x-www-form-urlencoded`, the old value
`application/x-www-urlformencoded` is invalid and will no longer be used.