Skip to content

Commit 8d523c6

Browse files
authored
Add an early link to other ADAL or MSAL SDKs
1 parent 17351c9 commit 8d523c6

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ by supporting authentication of users with
77
and [Microsoft Accounts](https://account.microsoft.com) using industry standard OAuth2 and OpenID Connect.
88
Soon MSAL Python will also support [Azure AD B2C](https://azure.microsoft.com/services/active-directory-b2c/).
99

10-
More and more detail about MSAL Python functionality and usage will be documented in the
11-
[Wiki](https://github.com/AzureAD/microsoft-authentication-library-for-python/wiki).
10+
Not sure whether this is the SDK you are looking for? There are other Microsoft Identity SDKs
11+
[here](https://github.com/AzureAD/microsoft-authentication-library-for-python/wiki/Microsoft-Authentication-Client-Libraries).
1212

1313
## Important Note about the MSAL Preview
1414

@@ -29,7 +29,7 @@ as applications written using a preview version of library may no longer work.
2929
of your Python environment to a recent version. We tested with pip 18.1.
3030
2. As usual, just run `pip install msal`.
3131

32-
## Usage
32+
## Usage and Samples
3333

3434
Before using MSAL Python (or any MSAL SDKs, for that matter), you will have to
3535
[register your application with the AAD 2.0 endpoint](https://docs.microsoft.com/en-us/azure/active-directory/develop/quickstart-v2-register-an-app).
@@ -86,20 +86,23 @@ Acquiring tokens with MSAL Python need to follow this 3-step pattern.
8686
print(result.get("correlation_id")) # You may need this when reporting a bug
8787
```
8888

89-
That is it. There will be some variations for different flows.
89+
That is the high level pattern. There will be some variations for different flows. They are demonstrated in
90+
[samples hosted right in this repo](https://github.com/AzureAD/microsoft-authentication-library-for-python/tree/dev/sample).
9091

9192

92-
## Samples and Documentation
93+
## Documentation
9394

9495
The generic documents on
9596
[Auth Scenarios](https://docs.microsoft.com/en-us/azure/active-directory/develop/authentication-scenarios)
9697
and
9798
[Auth protocols](https://docs.microsoft.com/en-us/azure/active-directory/develop/active-directory-v2-protocols)
9899
are recommended reading.
99100

100-
There is also the [API reference of MSAL Python](https://msal-python.rtfd.io).
101+
There is the [API reference of MSAL Python](https://msal-python.rtfd.io) which documents every parameter of each public method.
102+
103+
More and more detail about MSAL Python functionality and usage will be documented in the
104+
[Wiki](https://github.com/AzureAD/microsoft-authentication-library-for-python/wiki).
101105

102-
You can try [runnable samples in this repo](https://github.com/AzureAD/microsoft-authentication-library-for-python/tree/dev/sample).
103106

104107

105108
## Versions

0 commit comments

Comments
 (0)