Skip to content

Commit 729fcaf

Browse files
Rany0101silverhand-bot
authored andcommitted
chore: update translations and generated content
1 parent 1c8a1fc commit 729fcaf

138 files changed

Lines changed: 4396 additions & 2842 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/end-user-flows/account-settings/README.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import GearIcon from '@site/src/assets/gear.svg';
1010

1111
Logto provides a two collection of account settings APIs to allow users to manage their account and profiles stored in Logto.
1212

13-
## Use Account APIs (Recommended)
13+
## Use Account APIs (Recommended) \{#use-account-apis-recommended}
1414

1515
Logto’s Account APIs are ready-to-use, front-end endpoints that let end users securely view and update their own information with built-in permission checks. Simply embed them in your client application to power a polished, self-service account settings page.
1616

@@ -36,7 +36,7 @@ Key features:
3636
]}
3737
/>
3838

39-
## Use Management APIs
39+
## Use Management APIs \{#use-management-apis}
4040

4141
The Management APIs form Logto’s core administrative interface, accessible only to admins or back-end services. They deliver maximum flexibility and full CRUD control over every user account and allow you to build custom management tools. If you need a fully custom self-service portal or nonstandard user-management features, you can expose selected Management API endpoints behind your own “Account API” layer and secure them with your business’s auth logic.
4242

@@ -61,7 +61,7 @@ Key features:
6161
]}
6262
/>
6363

64-
## Account API vs. Management API
64+
## Account API vs. Management API \{#account-api-vs-management-api}
6565

6666
| Feature | Account APIs | Management APIs |
6767
| ---------------------- | --------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |

docs/end-user-flows/security-verification/README.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ When authenticated users attempt sensitive or high-risk actions—such as changi
88

99
This process, known as _security verification_, requires users to re-verify their identity to confirm they are the authorized account holder. By implementing security verification, the system reinforces protection against unauthorized access, adding a critical layer of security for high-risk actions and helping safeguard sensitive data.
1010

11-
## Implement security verification by Account API
11+
## Implement security verification by Account API \{#implement-security-verification-by-account-api}
1212

1313
:::note
1414
Remember to [enable Account API](/end-user-flows/account-settings/by-account-api) first, and get the `access_token` for the user.

docs/end-user-flows/sign-out.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ If you are integrating Logto with your client application using Logto's SDKs:
181181
For native applications that does not support sessionless webview or does not recognize the `emphasized` settings(Android app using **React Native** or **Flutter** SDK), you may force the user prompt to sign in again by passing the `prompt=login` parameter in the authorization request.
182182
:::
183183

184-
## Enforce re-authentication on every access
184+
## Enforce re-authentication on every access \{#enforce-re-authentication-on-every-access}
185185

186186
In high-security scenarios—such as verifying a user's identity before sensitive actions—you may want to require the user to re-authenticate on every access. To enforce this behavior, include `prompt=login` in your authentication request.
187187

docs/end-user-flows/sign-up-and-sign-in/disable-user-registration.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_label: Disable user registration
77

88
In some circumstances, you may want to restrict user registration for your application. Logto allows you to disable anonymous user registration and restrict user sign-in to only users invited by an administrator.
99

10-
## Disable user registration
10+
## Disable user registration \{#disable-user-registration}
1111

1212
To disable end-user registration, follow these steps:
1313

@@ -25,7 +25,7 @@ Once user registration is disabled:
2525

2626
Logto does not provide a built-in invitation flow. However, you can easily implement an invite-only sign-up flow by utilizing the users Management API in Logto.
2727

28-
### Option 1: Invite user with magic link (Recommended)
28+
### Option 1: Invite user with magic link (Recommended) \{#option-1-invite-user-with-magic-link-recommended}
2929

3030
1. Disable user registration in the <CloudLink to="/sign-in-experience/sign-up-and-sign-in">Console > Sign-in-experience</CloudLink>.
3131
2. Go to <CloudLink to="/sign-in-experience/sign-up-and-sign-in">Console > Sign-in-experience</CloudLink>, and toggle off "Enable user registration" to close public registration.
@@ -49,7 +49,7 @@ Logto does not provide a built-in invitation flow. However, you can easily imple
4949

5050
When users click "Accept the invitation", they will automatically register for your service, even with public registration disabled. This is referred to as "Targeted user invitation".
5151

52-
### Option 2: Invite and create users via management API
52+
### Option 2: Invite and create users via management API \{#option-2-invite-and-create-users-via-management-api}
5353

5454
1. Disable user registration in the <CloudLink to="/sign-in-experience/sign-up-and-sign-in">Console > Sign-in-experience</CloudLink>.
5555
2. Create a custom invitation-based user registration form in your application.
@@ -64,7 +64,7 @@ Logto does not provide a built-in invitation flow. However, you can easily imple
6464
3. Notify users via email that their account has been created.
6565
4. Redirect users to the Logto sign-in or reset-password page to complete registration. See [Authentication parameters](/end-user-flows/authentication-parameters/) for guidance on customizing the first-screen and pre-filling the user’s email to streamline the sign-in process.
6666

67-
## User experience for pre-registered accounts
67+
## User experience for pre-registered accounts \{#user-experience-for-pre-registered-accounts}
6868

6969
Pre-registered accounts (also known as provisioned users). In both Option 2 and Option 3, user accounts are created in advance via the Management API. The end users then sign in to your product for the first time.
7070

docs/end-user-flows/sign-up-and-sign-in/error-pages.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ By default, Logto will show a generic error page (e.g., a 404 “unknown session
1818
- **Unknown session redirect URL**: A fallback URL to send users to when their session is not found.
1919
- **Support email & Support website**: Contact information shown on error pages.
2020

21-
## Unknown session redirect URL
21+
## Unknown session redirect URL \{#unknown-session-redirect-url}
2222

2323
Logto uses the [OpenID Connect (OIDC)](https://auth.wiki/openid-connect) flow for authentication. A valid OIDC authorization flow must be initiated by your application, e.g, clicking your app’s “Sign in” button sends an OIDC authorization request to Logto, which then sets up a secure session (cookie).
2424

@@ -35,7 +35,7 @@ How to set it up:
3535
1. Go to <CloudLink to="/sign-in-experience/sign-up-and-sign-in">Console > Sign-in experience > Sign-up and sign-in > Advanced settings</CloudLink>
3636
2. Set the "Unknown session redirect URL" to your service address or product’s homepage. E.g., Logto Cloud will set "https://cloud.logto.io".
3737

38-
## Support contact info
38+
## Support contact info \{#support-contact-info}
3939

4040
If other errors occur (such as visiting an invalid path, a social callback with no session, or opening an expired magic link), Logto will show a default error page. To help users, you can display contact information on these unavoidable error pages.
4141

docs/end-user-flows/sign-up-and-sign-in/reset-password.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Not seeing the "Forgot password" link? Make sure you have a valid **Email** or *
2929

3030
For authenticated users, they can update their password by visiting the account settings page. Check the [account settings](/end-user-flows/account-settings/) to learn more about implementing a user account settings page.
3131

32-
## Custom password policy
32+
## Custom password policy \{#custom-password-policy}
3333

3434
Customize password length, character requirements, and word restrictions to meet your business's security needs while providing a good user experience. These settings can be configured in the **Security** section. Check the [password policy](/security/password-policy) to learn more.
3535

docs/integrate-logto/README.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Logto provides comprehensive authentication solutions for web, mobile and deskto
1414

1515
Start your integration by selecting the solution that best matches your needs:
1616

17-
## Add authentication for your applications
17+
## Add authentication for your applications \{#add-authentication-for-your-applications}
1818

1919
Whether you're building user-facing applications (like web, mobile, or desktop apps) or machine-to-machine (M2M) applications for service-to-service communication, you can quickly implement comprehensive [authentication](/end-user-flows) and [user management](/user-management) features by integrating Logto.
2020

@@ -50,7 +50,7 @@ Or try a no-code integration solution via Protected App when you’re using Logt
5050
]}
5151
/>
5252

53-
## Add SAML apps
53+
## Add SAML apps \{#add-saml-apps}
5454

5555
Logto (as an Identity Provider) supports integration with SAML protocol-based applications (as a Service Provider). Through SAML app integration, you can provide enterprise users with a secure, standardized Single Sign-On (SSO) experience.
5656

@@ -69,7 +69,7 @@ Logto (as an Identity Provider) supports integration with SAML protocol-based ap
6969
]}
7070
/>
7171

72-
## Add OIDC/OAuth apps
72+
## Add OIDC/OAuth apps \{#add-oidc-oauth-apps}
7373

7474
When you want to enable third-party applications to authenticate with your Logto identity system, you can configure Logto as an [Identity Provider (IdP)](https://auth.wiki/identity-provider).
7575

docs/integrate-logto/third-party-applications/README.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,12 +82,12 @@ These requested permissions will be granted to the third-party applications only
8282
]}
8383
/>
8484

85-
## FAQs
85+
## FAQs \{#faqs}
8686

8787
<details>
8888
<summary>
8989

90-
### How do we ensure users can only grant permissions they actually have on the consent screen?
90+
### How do we ensure users can only grant permissions they actually have on the consent screen? \{#how-do-we-ensure-users-can-only-grant-permissions-they-actually-have-on-the-consent-screen}
9191

9292
</summary>
9393

docs/integrate-logto/third-party-applications/permission-management.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ You can define your own organization scopes under the organization template sett
8686
Organization scopes that are not enabled to the third-party applications will be ignored when sending an authorization request. It won't be displayed on the user consent screen and won't be granted by Logto.
8787
:::
8888

89-
### Default OIDC permissions
89+
### Default OIDC permissions \{#default-oidc-permissions}
9090

9191
Core OIDC permissions are automatically configured for your app. These scopes are required for OIDC authentication and will **not** appear on the user consent screen. OAuth apps can choose not to request them if OIDC authentication isn’t needed.
9292

docs/logto-cloud/tenant-settings.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,13 +80,13 @@ However, there are certain limitations that apply to development tenants:
8080

8181
The production tenant is where end-users access the live app and you might need a [paid subscription](https://logto.io/pricing). You can subscribe to the Free plan or Pro plan to create a production tenant. If you subscribe to the Free plan, you can only create up to 10 tenants.
8282

83-
## Enable MFA
83+
## Enable MFA \{#enable-mfa}
8484

8585
Enhance your workspace security by requiring Multi-Factor Authentication (MFA) for all members in your Logto Pro/Enterprise tenant.
8686

8787
Since self-service is not yet available, please [contact us](https://logto.io/contact) to enable this feature.
8888

89-
## Enable Enterprise SSO
89+
## Enable Enterprise SSO \{#enable-enterprise-sso}
9090

9191
Logto Cloud supports enterprise Single Sign-On integration for paid tenants, including providers like Google Workspace, Okta, Azure AD, and more.
9292

0 commit comments

Comments
 (0)