In the MSAL Python library, are the ConfidentialClientApplication and its underlying TokenCache objects thread safe?

Viewed 136

When using Microsoft Authentication Library for Python (MSAL) on the server side, is it safe to share single ConfidentialClientApplication object between several threads?

In other words, if different users acquire new tokens in parallel threads at the same moment, will the underlying TokenCache remain consistent?

1 Answers
Related