mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-12-18 06:44:19 -05:00
Send 3PID bind requests as JSON data
This commit is contained in:
parent
f281714583
commit
f77e997619
1
changelog.d/5656.bugfix
Normal file
1
changelog.d/5656.bugfix
Normal file
@ -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")
|
raise SynapseError(400, "No client_secret in creds")
|
||||||
|
|
||||||
try:
|
try:
|
||||||
data = yield self.http_client.post_urlencoded_get_json(
|
data = yield self.http_client.post_post_get_json(
|
||||||
"https://%s%s" % (id_server, "/_matrix/identity/api/v1/3pid/bind"),
|
"https://%s%s" % (id_server, "/_matrix/identity/api/v1/3pid/bind"),
|
||||||
{"sid": creds["sid"], "client_secret": client_secret, "mxid": mxid},
|
{"sid": creds["sid"], "client_secret": client_secret, "mxid": mxid},
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user