Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Send 3PID bind requests as JSON data #5658

Merged
merged 3 commits into from Jul 10, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/5658.bugfix
@@ -0,0 +1 @@
Fix 3PID bind requests being sent to identity servers as `application/x-form-www-urlencoded` data, which is deprecated.
2 changes: 1 addition & 1 deletion synapse/handlers/identity.py
Expand Up @@ -118,7 +118,7 @@ def bind_threepid(self, creds, mxid):
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},
)
Expand Down