@@ -30,7 +30,7 @@ This Identity library is an authentication/authorization library that:
30
30
</tr >
31
31
32
32
<tr >
33
- <th>App Registration</th>
33
+ <th rowspan=2 >App Registration</th>
34
34
<td><!-- See https://github.com/github/cmark-gfm/issues/12 -->
35
35
36
36
Following only the step 1, 2 and 3 of this
@@ -55,6 +55,26 @@ Following only the step 1 and 2 (including 2.1 and 2.2) of this
55
55
</td >
56
56
</tr >
57
57
58
+ <tr >
59
+ <td colspan=4>
60
+ After app registration, you shall obtain the following information:
61
+
62
+ * Your app's ` client_id ` , also known as application ID.
63
+ (For example, if you are using Entra ID, you may follow this
64
+ [ app registration document] ( https://learn.microsoft.com/entra/identity-platform/quickstart-register-app ) ).
65
+ * Your app's credential, which can either be a secret string, or a certificate.
66
+ (For example, if you are using Entra ID, you may follow this
67
+ [ app credential document] ( https://learn.microsoft.com/entra/identity-platform/how-to-add-credentials?tabs=client-secret ) ).
68
+ The ` Identity ` library's ` client_credential ` parameter supports all formats supported by
69
+ [ ` msal ` library's same name parameter] ( https://msal-python.readthedocs.io/en/latest/#msal.ClientApplication.params.client_credential ) .
70
+ * Your app's Redirect URI.
71
+ You may prepare two, one of them looks like ` http://localhost:5000/redirect ` for local development,
72
+ the other looks like ` https://your_website.com/redirect ` for your production.
73
+ (For example, if you are using Entra ID, you may follow this
74
+ [ redirect URI document] ( https://learn.microsoft.com/entra/identity-platform/how-to-add-redirect-uri ) ).
75
+ </td >
76
+ </tr >
77
+
58
78
<tr >
59
79
<th >Web App Sign In & Sign Out</th >
60
80
<td colspan =4 >
0 commit comments