msgraph-sdk-java-auth
msgraph-sdk-java-auth copied to clipboard
Authentication Providers for Microsoft Graph Java SDK
In situations where you have already persisted the AccessToken (First Time Retrieved ) and refresh Token in the database for future use, there should be a way to initialize the...
### Expected behavior Implementation of IHttpProvider class which gives the capability to handle Token Invalidation Errors within the class itself. Consider a Scenario, wherein you can pass RefreshToken to the...
The sdk could easily be in use from multiple threads in an application. To keep new token requests to a minimum one approach is simply to add a synchronized keyword...
Hello, The current clientCredentialProvider need a clientSecret to builder the oauth2 request. But it exists another way to use certificate instead of clientSecret which is recommended by Microsoft. Is there...
Expected behavior ChunkedUploadProvider.upload(...) uploads the specified file and attaches it to the message, per https://docs.microsoft.com/en-us/graph/outlook-large-attachments?tabs=java. Actual behavior 401 : Unauthorized upon request. com.microsoft.graph.core.ClientException: Error code: InvalidAudienceForResource Error message: The audience...
In getAccessToken() method if access token is expired then all threads will renew the token. Also if 1st thread get new token, update the start time and then 2nd thread...