README.rst 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. Installation
  2. ============
  3. Dependencies can be installed using setup.py in the same way as synapse: see synapse/README.rst. For instance:
  4. sudo apt-get install build-essential python2.7-dev libffi-dev \
  5. python-pip python-setuptools sqlite3 \
  6. libssl-dev python-virtualenv libjpeg-dev libxslt1-dev
  7. virtualenv -p python2.7 ~/.sydent
  8. source ~/.sydent/bin/activate
  9. pip install --upgrade pip
  10. pip install --upgrade setuptools
  11. pip install https://github.com/matrix-org/sydent/tarball/master
  12. Having installed dependencies, you can run sydent using::
  13. $ python -m sydent.sydent
  14. This will create a configuration file in sydent.conf with some defaults. You'll most likely want to change the server name and specify a mail relay.
  15. Defaults for SMS originators will not be added to the generated config file, these should be added in the form::
  16. originators.<country code> = <long|short|alpha>:<originator>
  17. Where country code is the numeric country code, or 'default' to specify the originator used for countries not listed. For example, to use a selection of long codes for the US/Canda, a short code for the UK and an alphanumertic originator for everywhere else::
  18. originators.1 = long:12125552368,long:12125552369
  19. originators.44 = short:12345
  20. originators.default = alpha:Matrix
  21. Requests
  22. ========
  23. The requests that synapse servers and clients submit to the identity server are, briefly, as follows:
  24. Request the validation of your email address:
  25. curl -XPOST 'http://localhost:8090/_matrix/identity/api/v1/validate/email/requestToken' -H "Content-Type: application/json" -d '{"email": "matthew@arasphere.net", "client_secret": "abcd", "send_attempt": 1}'
  26. {"success": true, "sid": "1"}
  27. # receive 943258 by mail
  28. Use this code to validate your email address:
  29. curl -XPOST 'http://localhost:8090/_matrix/identity/api/v1/validate/email/submitToken' -H "Content-Type: application/json" -d '{"token": "943258", "sid": "1", "client_secret": "abcd"}'
  30. {"success": true}
  31. Use the validated email address to bind it to a matrix ID:
  32. curl -XPOST 'http://localhost:8090/_matrix/identity/api/v1/3pid/bind' -H "Content-Type: application/json" -d '{"sid": "1", "client_secret": "abcd", "mxid": "%40matthew%3amatrix.org"}'
  33. # lookup:
  34. curl 'http://localhost:8090/_matrix/identity/api/v1/lookup?medium=email&address=henry%40matrix.org'
  35. # fetch pubkey key for a server
  36. curl http://localhost:8090/_matrix/identity/api/v1/pubkey/ed25519