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.
This pull request adds support for the OAuth2 "client_credentials" flow to the backend and updates the UI to handle this new flow. The primary changes include backend logic for obtaining tokens using client credentials (without browser redirects), updating credential storage with token data, and frontend feedback for successful completion of the flow. The original "authorization code" flow remains unchanged.
OAuth2 flow enhancements:
packages/server/src/routes/oauth2/index.ts
, enabling direct token acquisition and credential updates without browser redirects.Frontend improvements:
AddEditCredentialDialog
inpackages/ui/src/views/credentials/AddEditCredentialDialog.jsx
to detect when the "client_credentials" flow is complete (authorization URL is'#'
), display a success message, and immediately confirm the credential without opening a new window.Minor code cleanup: