Skip to content

Commit 8fe6e9b

Browse files
fix: reorder FAQ entries for clarity and remove outdated content
1 parent 2fb3cb5 commit 8fe6e9b

1 file changed

Lines changed: 6 additions & 11 deletions

File tree

FAQ.md

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@
88
6. [How can I programmatically close the iOS alert box?](#6-how-can-i-programmatically-close-the-ios-alert-box)
99
7. [Auth0 web browser gets killed when going to the background on Android](#7-auth0-web-browser-gets-killed-when-going-to-the-background-on-android)
1010
8. [How to resolve the _Failed to start this transaction, as there is an active transaction at the moment_ error?](#8-how-to-resolve-the-failed-to-start-this-transaction-as-there-is-an-active-transaction-at-the-moment-error)
11-
9. [How can I prevent the autogenerated redirect_uri from breaking if the applicationId has mixed cases or special characters in it on Android?](#9-how-can-i-prevent-the-autogenerated-redirect_uri-from-breaking-if-the-applicationId-has-mixed-cases-or-special-characters-in-it-on-android)
12-
10. [Why doesn't `await authorize()` work on the web? How do I handle login?](#10-why-doesnt-await-authorize-work-on-the-web-how-do-i-handle-login)
13-
11. [Why do my users get logged out frequently? How do I keep them logged in?](#11-why-do-my-users-get-logged-out-frequently-how-do-i-keep-them-logged-in)
14-
12. [How can I prompt users to the login page versus signup page?](#12-how-can-i-prompt-users-to-the-login-page-versus-signup-page)
11+
9. [Why doesn't `await authorize()` work on the web? How do I handle login?](#9-why-doesnt-await-authorize-work-on-the-web-how-do-i-handle-login)
12+
10. [Why do my users get logged out frequently? How do I keep them logged in?](#10-why-do-my-users-get-logged-out-frequently-how-do-i-keep-them-logged-in)
13+
11. [How can I prompt users to the login page versus signup page?](#11-how-can-i-prompt-users-to-the-login-page-versus-signup-page)
1514

1615
## 1. How can I have separate Auth0 domains for each environment on Android?
1716

@@ -262,11 +261,7 @@ You can invoke `cancelWebAuth()` to manually clear the current login transaction
262261

263262
If you don't need SSO, consider using `ephemeral sessions` or `SFSafariViewController` instead of `ASWebAuthenticationSession`. See [2. How can I disable the iOS _login_ alert box?](#2-how-can-i-disable-the-ios-login-alert-box) for more information.
264263

265-
## 9. How can I prevent the autogenerated redirect_uri from breaking if the applicationId has mixed cases or special characters in it on Android ?
266-
267-
It is recommended to have your applicationId in lower case without special characters to prevent any mismatch with the generated redirect_uri. But in the scenario where you require your applicationId to be of mixed case, to avoid any mismatch , the user can pass a `redirectUri` which matches the one provided in the manage dashboard as part of the `AgentLoginOptions` property.
268-
269-
## 10. Why doesn't `await authorize()` work on the web? How do I handle login?
264+
## 9. Why doesn't `await authorize()` work on the web? How do I handle login?
270265

271266
This is a key difference between native and web platforms.
272267

@@ -313,7 +308,7 @@ const MyComponent = () => {
313308
};
314309
```
315310

316-
## 11. Why do my users get logged out frequently? How do I keep them logged in?
311+
## 10. Why do my users get logged out frequently? How do I keep them logged in?
317312

318313
If your users are being asked to log in again after a short period (e.g., when they close and reopen the app), it's likely because the SDK cannot silently refresh their tokens.
319314

@@ -339,7 +334,7 @@ const handleLogin = async () => {
339334

340335
By including this scope, the SDK will receive and securely store a `refreshToken`. This token will then be used by `getCredentials()` to maintain the user's session across app launches, providing a much smoother user experience.
341336

342-
## 12. How can I prompt users to the login page versus signup page?
337+
## 11. How can I prompt users to the login page versus signup page?
343338

344339
If your application has one button for logging in and one button for signing up, you can prompt Auth0 to direct the user to the appropriate authentication page as such:
345340

0 commit comments

Comments
 (0)