feat: add connectAccountWithRedirect method to AuthService#767
Merged
yogeshchoudhary147 merged 4 commits intomainfrom Jan 12, 2026
Merged
feat: add connectAccountWithRedirect method to AuthService#767yogeshchoudhary147 merged 4 commits intomainfrom
yogeshchoudhary147 merged 4 commits intomainfrom
Conversation
- Add connectAccountWithRedirect() method to AuthService - Export RedirectConnectAccountOptions type from public-api.ts - Exposes existing auth0-spa-js functionality to Angular SDK
EXAMPLES.md
Outdated
| - [Handling errors](#handling-errors) | ||
| - [Organizations](#organizations) | ||
| - [Standalone Components and a more functional approach](#standalone-components-and-a-more-functional-approach) | ||
| - [Connect Accounts](#connect-accounts) |
Contributor
There was a problem hiding this comment.
We can call this Connect Accounts for using Token Vault
gyaneshgouraw-okta
approved these changes
Jan 12, 2026
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.
Description
Adds support for the
connectAccountWithRedirect()method to auth0-angular, exposing the Connect Account functionality already available in auth0-spa-js.Changes
connectAccountWithRedirect()method toAuthServicethat wraps the auth0-spa-js client methodRedirectConnectAccountOptionstype frompublic-api.tsEXAMPLES.mdwith configuration and implementation detailsMotivation
The
connectAccountWithRedirect()method is available in auth0-spa-js but was not exposed in auth0-angular. This prevented Angular customers from using the Connect Account flow with MRRT (Multi-Refresh Token Rotation).Without this method, customers were forced to use silent login (iframe-based) as a workaround, which fails in Safari and other browsers with strict third-party cookie policies.
Implementation Details
loginWithRedirect()Observable<void>consistent with other redirect methodshandleRedirectCallback()method already supportsConnectAccountRedirectResult, so no additional changes needed for callback handlingTesting