diff options
author | Kegan Dougal <kegan@matrix.org> | 2014-10-06 14:52:46 +0100 |
---|---|---|
committer | Kegan Dougal <kegan@matrix.org> | 2014-10-06 14:52:46 +0100 |
commit | 3ef2c946d58034173f4fb54b4708ac108f1cf3f7 (patch) | |
tree | d4a78d8714cbe156bfd7bc615fd6e473bc838c0c /docs | |
parent | Add more section headings. (diff) | |
download | synapse-3ef2c946d58034173f4fb54b4708ac108f1cf3f7.tar.xz |
Update JSFiddles/how-to to support the new registration format.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/client-server/howto.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/client-server/howto.rst b/docs/client-server/howto.rst index ec941edddd..9913e8db1e 100644 --- a/docs/client-server/howto.rst +++ b/docs/client-server/howto.rst @@ -31,7 +31,7 @@ Registration The aim of registration is to get a user ID and access token which you will need 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", |