integrate microsoft oauth2 client workflow#24
Merged
Conversation
Contributor
Author
Add Microsoft OAuth2 SupportThis PR introduces Microsoft OAuth2 authentication to Changes
Usagefrom authlib.microsoft import MicrosoftOAuth2Client
urlpatterns = [
path("oauth/microsoft/", views.oauth2, {"client_class": MicrosoftOAuth2Client}),
]Add to MICROSOFT_CLIENT_ID = "your-client-id"
MICROSOFT_CLIENT_SECRET = "your-client-secret" |
d0494df to
96dc7fd
Compare
matthiask
reviewed
Jul 1, 2026
matthiask
left a comment
Member
There was a problem hiding this comment.
Sieht toll aus!
Zwei Punkte:
- Muss man nach dem Upgrade nun immer die
MICROSOFT_*Settings verfügbar haben? Das wäre schade. - Ich fänds toll, wenn die Login-Buttons nun nur angezeigt werden, wenn die Loginmethode verfügbar ist. Das war vorher kein Issue, weil sowieso nur Google unterstützt wurde.
Contributor
Author
Das sollte definitiv nicht so sein. Danke!
Klingt gut, mache ich. Danke für die Review! |
and only configured oauth clients provide a login button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Users from Microsoft Azure AD should be able to login via OAuth2 workflow.