1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-25 00:07:47 +01:00

docs: correct proxy url to demo instance

This commit is contained in:
Ivar Conradi Østhus 2022-04-11 22:23:22 +02:00
parent 4fe38325d0
commit 947d9fc40c
No known key found for this signature in database
GPG Key ID: 31AC596886B0BD09

View File

@ -24,7 +24,7 @@ In order to create a toggle through the UI, [you can follow this guide](create-f
Connection details:
```
Api URL: https://app.unleash-hosted.com/demo/proxy
Api URL: https://app.unleash-hosted.com/demo/api/proxy
Secret key: proxy-123 (edited)
```
@ -41,7 +41,7 @@ Here is a connection example using the javascript proxy SDK:
import { UnleashClient } from 'unleash-proxy-client';
const unleash = new UnleashClient({
url: 'https://app.unleash-hosted.com/demo/proxy',
url: 'https://app.unleash-hosted.com/demo/api/proxy',
clientKey: 'proxy-123',
appName: 'my-webapp',
});