1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-13 13:48:59 +02:00

Merge remote-tracking branch 'origin/2-3716/doc-updates' into 2-3716/doc-updates

This commit is contained in:
Gastón Fournier 2025-07-30 10:34:43 +02:00
commit 78b523f546
No known key found for this signature in database
GPG Key ID: AF45428626E17A8E
4 changed files with 5 additions and 5 deletions

View File

@ -163,7 +163,7 @@ Now, let's connect our project to Unleash so that you can toggle a feature flag
You'll need two things:
- The URL of your Unleash instance's API. It's `http://localhost:4242/api/` for your local version.
- A [client API token](/reference/api-tokens-and-client-keys#backend-tokens). You can create one inside a project in **Settings > API access**.
- A [backend token](/reference/api-tokens-and-client-keys#backend-tokens). You can create one inside a project in **Settings > API access**.
You can now initialize your Unleash client as follows:

View File

@ -30,7 +30,7 @@ If you're using a hosted version of Unleash, we can also run the proxy for you.
This is what you need before you can run the proxy:
- A running Unleash server to connect to. You'll need its API path (e.g. `https://app.unleash-hosted.com/demo/api`) to connect the proxy to it.
- A [client API token](../reference/api-tokens-and-client-keys#backend-tokens) for the proxy to use.
- A [backend token](../reference/api-tokens-and-client-keys#backend-tokens) for the proxy to use.
- If you're running the Proxy via Docker: [the `docker` command line tool](https://www.docker.com/).
- If you're running the Proxy as a Node.js app: [Node.js and its command line tools](https://nodejs.org/).
- A [Proxy client key](../reference/api-tokens-and-client-keys#proxy-client-keys). This can be any arbitrary string (for instance: `proxy-client-key`). Use this key when connecting a client SDK to the Proxy.

View File

@ -88,7 +88,7 @@ unleash.on("synchronized", () => {
1. **Create an API token**
In the Unleash Admin UI, create a [client API token](/reference/api-tokens-and-client-keys#backend-tokens) in **Admin settings > Access control > API access**.
In the Unleash Admin UI, create a [backend token](/reference/api-tokens-and-client-keys#backend-tokens) in **Admin settings > Access control > API access**.
2. **Get your Unleash API URL**
Find the base URL of your Unleash Cloud instance (for example, `https://us.app.unleash-hosted.com/some-instance-id`). Your API URL is this base URL with `/api` appended to it.

View File

@ -28,7 +28,7 @@ Backend tokens are intended for use in [backend SDKs](../reference/sdks#backend-
- Registering applications with the Unleash server
- Sending usage metrics
Backend tokens are scoped to one or more projects and a single environment. When creating a frontend token, you can give it access to a specific list of projects or to all current or future projects. Frontend tokens are secrets and must not be exposed to end users.
Backend tokens are scoped to one or more projects and a single environment. When creating a backend token, you can give it access to a specific list of projects or to all current or future projects. Backend tokens are secrets and must not be exposed to end users.
Backend tokens cannot be used in frontend SDKs; use [frontend tokens](#frontend-tokens) instead.
@ -52,7 +52,7 @@ When you use a personal access token to modify resources, the events record the
Personal access tokens with a lifetime expire and stop working after their expiration date. Although you can set the token to not expire, we recommend using tokens with expiration dates to follow security best practices.
Personal access tokens are not suitable for backend or frontend SDKs, as they are not bound to an environment, they may expire, or their permissions may change.
Personal access tokens are not suitable for use in SDKs, as they are not bound to an environment, they may expire, or their permissions may change.
### Service account tokens