diff --git a/website/docs/feature-flag-tutorials/javascript/implementing-feature-flags-js.md b/website/docs/feature-flag-tutorials/javascript/implementing-feature-flags-js.md index de0fdf37e4..2e2b736859 100644 --- a/website/docs/feature-flag-tutorials/javascript/implementing-feature-flags-js.md +++ b/website/docs/feature-flag-tutorials/javascript/implementing-feature-flags-js.md @@ -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: diff --git a/website/docs/how-to/how-to-run-the-unleash-proxy.mdx b/website/docs/how-to/how-to-run-the-unleash-proxy.mdx index a805db0bd0..d2b4ff6c9d 100644 --- a/website/docs/how-to/how-to-run-the-unleash-proxy.mdx +++ b/website/docs/how-to/how-to-run-the-unleash-proxy.mdx @@ -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. diff --git a/website/docs/quickstart.mdx b/website/docs/quickstart.mdx index 74bc95f6dd..b8e316e42d 100644 --- a/website/docs/quickstart.mdx +++ b/website/docs/quickstart.mdx @@ -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.