Merge pull request #5658 from matrix-org/babolivier/is-json

Send 3PID bind requests as JSON data
code_spécifique_watcha
Brendan Abolivier 5 years ago committed by GitHub
commit 8ab3444fdf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      changelog.d/5658.bugfix
  2. 2
      synapse/handlers/identity.py

@ -0,0 +1 @@
Fix 3PID bind requests being sent to identity servers as `application/x-form-www-urlencoded` data, which is deprecated.

@ -118,7 +118,7 @@ class IdentityHandler(BaseHandler):
raise SynapseError(400, "No client_secret in creds")
try:
data = yield self.http_client.post_urlencoded_get_json(
data = yield self.http_client.post_json_get_json(
"https://%s%s" % (id_server, "/_matrix/identity/api/v1/3pid/bind"),
{"sid": creds["sid"], "client_secret": client_secret, "mxid": mxid},
)

Loading…
Cancel
Save