Hopefully clarify some bits

dbkr/tos_2
David Baker 5 years ago
parent 25a47afa32
commit a1de6ff634

@ -76,9 +76,8 @@ of:
This indicates that the user must authenticate with OpenID and supply a valid This indicates that the user must authenticate with OpenID and supply a valid
`access_token`. `access_token`.
All other endpoints require authentication by the client supplying an access token Clients authenticate either via an `Authorization` header with a `Bearer` token
either via an `Authorization` header with a `Bearer` token or an `access_token` or an `access_token` query parameter.
query parameter.
The existing endpoints under `/_matrix/identity/api/v1/` continue to be The existing endpoints under `/_matrix/identity/api/v1/` continue to be
unauthenticated but will be deprecated. ISes may support the old v1 API for as unauthenticated but will be deprecated. ISes may support the old v1 API for as
@ -142,6 +141,17 @@ to use the service. Its response is similar to the structure used in the
"name": "Conditions d'utilisation", "name": "Conditions d'utilisation",
"url": "https://example.org/somewhere/terms-2.0-fr.html" "url": "https://example.org/somewhere/terms-2.0-fr.html"
} }
},
"privacy_policy": {
"version": "1.2",
"en": {
"name": "Privacy Policy",
"url": "https://example.org/somewhere/privaacy-1.2-en.html"
},
"fr": {
"name": "Politique de confidentialité",
"url": "https://example.org/somewhere/privacy-1.2-fr.html"
}
} }
} }
} }

Loading…
Cancel
Save