Sydent: Reference Matrix Identity Server http://matrix.org (mirror)

David Baker 5368ae73ef Put message ID in angle brackets to make it compliant with the RFC 8 năm trước cách đây
res 531c1ea1ea It's all fun and games until somebody loses an 'i'. 9 năm trước cách đây
scripts 8df34e5828 Might as well do some quoting 9 năm trước cách đây
sydent 5368ae73ef Put message ID in angle brackets to make it compliant with the RFC 8 năm trước cách đây
.gitignore 189d1857f8 .gitignore some more files 9 năm trước cách đây
LICENSE 2360cd427f Reference Synapse Identity Verification and Lookup Server 10 năm trước cách đây
README.rst 21ac08a9a1 Update readme with underscore paths 10 năm trước cách đây
setup.cfg 2360cd427f Reference Synapse Identity Verification and Lookup Server 10 năm trước cách đây
setup.py ab4f3047af depend on the public syutil repo! 9 năm trước cách đây

README.rst

Installation
============

Dependencies can be installed using setup.py in the same way as synapse: see synapse/README.rst.

Having installed dependencies, you can run sydent using::

$ python -m sydent.sydent

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.

Requests
========

The requests that synapse servers and clients submit to the identity server are, briefly, as follows:

Request the validation of your email address:

curl -XPOST 'http://localhost:8090/_matrix/identity/api/v1/validate/email/requestToken' -d'email=matthew@arasphere.net&clientSecret=abcd&sendAttempt=1'
{"success": true, "tokenId": 1}

# receive 943258 by mail

Use this code to validate your email address:

curl -XPOST 'http://localhost:8090/_matrix/identity/api/v1/validate/email/submitToken' -d'token=943258&sid=1&clientSecret=abcd'
{"success": true}

Use the validated email address to bind it to a matrix ID:

curl -XPOST 'http://localhost:8090/_matrix/identity/api/v1/3pid/bind' -d'sid=1&clientSecret=abcd&mxid=%40matthew%3amatrix.org'

# lookup:

curl 'http://localhost:8090/_matrix/identity/api/v1/lookup?medium=email&address=henry%40matrix.org'

# fetch pubkey key for a server

curl http://localhost:8090/_matrix/identity/api/v1/pubkey/ed25519