1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
//! OpenID endpoints.
//! `GET /_matrix/federation/*/openid/userinfo`
//!
//! Exchange an OpenID access token for information about the user who generated the token.
//! `/v1/` ([spec])
//!
//! [spec]: https://spec.matrix.org/latest/server-server-api/#get_matrixfederationv1openiduserinfo
use *;
use ;
use crateOwnedUserId;
// const METADATA: Metadata = metadata! {
// method: GET,
// rate_limited: false,
// authentication: None,
// history: {
// 1.0 => "/_matrix/federation/v1/openid/userinfo",
// }
// };
/// Request type for the `get_openid_userinfo` endpoint.
/// Response type for the `get_openid_userinfo` endpoint.