1
+ =========================
1
2
MSAL Python Documentation
2
3
=========================
3
4
@@ -11,6 +12,8 @@ MSAL Python Documentation
11
12
..
12
13
Comment: Perhaps because of the theme, only the first level sections will show in TOC,
13
14
regardless of maxdepth setting.
15
+ UPDATE: And now (early 2024) suddenly a function-level, long TOC is generated,
16
+ even though maxdepth is set to 2.
14
17
15
18
You can find high level conceptual documentations in the project
16
19
`README <https://github.com/AzureAD/microsoft-authentication-library-for-python >`_.
@@ -92,7 +95,7 @@ They are implemented as two separated classes,
92
95
with different methods for different authentication scenarios.
93
96
94
97
ClientApplication
95
- =================
98
+ -----------------
96
99
97
100
.. autoclass :: msal.ClientApplication
98
101
:members:
@@ -101,22 +104,22 @@ ClientApplication
101
104
.. automethod :: __init__
102
105
103
106
PublicClientApplication
104
- =======================
107
+ -----------------------
105
108
106
109
.. autoclass :: msal.PublicClientApplication
107
110
:members:
108
111
109
112
.. automethod :: __init__
110
113
111
114
ConfidentialClientApplication
112
- =============================
115
+ -----------------------------
113
116
114
117
.. autoclass :: msal.ConfidentialClientApplication
115
118
:members:
116
119
117
120
118
121
TokenCache
119
- ==========
122
+ ----------
120
123
121
124
One of the parameters accepted by
122
125
both `PublicClientApplication ` and `ConfidentialClientApplication `
@@ -130,3 +133,18 @@ See `SerializableTokenCache` for example.
130
133
131
134
.. autoclass :: msal.SerializableTokenCache
132
135
:members:
136
+
137
+
138
+ PopAuthScheme
139
+ -------------
140
+
141
+ This is used as the `auth_scheme ` parameter in many of the acquire token methods
142
+ to support for Proof of Possession (PoP) tokens.
143
+
144
+ New in MSAL Python 1.26
145
+
146
+ .. autoclass :: msal.PopAuthScheme
147
+ :members:
148
+
149
+ .. automethod :: __init__
150
+
0 commit comments