Skip to content
Snippets Groups Projects
Commit 3ef2c946 authored by Kegan Dougal's avatar Kegan Dougal
Browse files

Update JSFiddles/how-to to support the new registration format.

parent aaf1d499
Branches
Tags
No related merge requests found
...@@ -31,7 +31,7 @@ Registration ...@@ -31,7 +31,7 @@ Registration
The aim of registration is to get a user ID and access token which you will need The aim of registration is to get a user ID and access token which you will need
when accessing other APIs:: when accessing other APIs::
curl -XPOST -d '{"user_id":"example", "password":"wordpass"}' "http://localhost:8008/_matrix/client/api/v1/register" curl -XPOST -d '{"user":"example", "password":"wordpass", "type":"m.login.password"}' "http://localhost:8008/_matrix/client/api/v1/register"
{ {
"access_token": "QGV4YW1wbGU6bG9jYWxob3N0.AqdSzFmFYrLrTmteXc", "access_token": "QGV4YW1wbGU6bG9jYWxob3N0.AqdSzFmFYrLrTmteXc",
......
...@@ -110,7 +110,7 @@ $('.register').live('click', function() { ...@@ -110,7 +110,7 @@ $('.register').live('click', function() {
url: "http://localhost:8008/_matrix/client/api/v1/register", url: "http://localhost:8008/_matrix/client/api/v1/register",
type: "POST", type: "POST",
contentType: "application/json; charset=utf-8", contentType: "application/json; charset=utf-8",
data: JSON.stringify({ user_id: user, password: password }), data: JSON.stringify({ user: user, password: password, type: "m.login.password" }),
dataType: "json", dataType: "json",
success: function(data) { success: function(data) {
onLoggedIn(data); onLoggedIn(data);
......
...@@ -14,7 +14,7 @@ $('.register').live('click', function() { ...@@ -14,7 +14,7 @@ $('.register').live('click', function() {
url: "http://localhost:8008/_matrix/client/api/v1/register", url: "http://localhost:8008/_matrix/client/api/v1/register",
type: "POST", type: "POST",
contentType: "application/json; charset=utf-8", contentType: "application/json; charset=utf-8",
data: JSON.stringify({ user_id: user, password: password }), data: JSON.stringify({ user: user, password: password, type: "m.login.password" }),
dataType: "json", dataType: "json",
success: function(data) { success: function(data) {
showLoggedIn(data); showLoggedIn(data);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment