freechat/docs/content/endpoints/auth.md
shockrah c896870397 Reformatting of wiki:
* Adding endpoint docs and correcting some typesetting mistakes
* Change qs params to match documentation
* Splitting up articles to geneate the sidebar links properly'
* Bad baseurl issue fixed in previous patch
2021-02-18 16:29:29 -08:00

542 B

title anchor weight
Authorization auth-ep 11

To make things easy: user id, secret, and jwt values are to be put in the query string. Headers are largely ignored as they offer no guarantees in security. The biggest reason for this however is for simplicity of implementation for servers.

POST /login

This route can be used to

  • Required query string parameters:

    • id: u64
    • secret: String
  • Returns:

    • jwt: String

Example

	> POST /login?id=123&secret=super-secret-token

	< {"jwt": "asdf.asdf.asdf"}