From c237a0f62c2bca41371cad8d8017f48b7c2a14b9 Mon Sep 17 00:00:00 2001 From: Fredrik Oseberg Date: Mon, 16 Aug 2021 14:39:40 +0200 Subject: [PATCH] fix: add curl command --- websitev2/docs/user_guide/quickstart.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/websitev2/docs/user_guide/quickstart.md b/websitev2/docs/user_guide/quickstart.md index 1d1832d58b..d0e194032f 100644 --- a/websitev2/docs/user_guide/quickstart.md +++ b/websitev2/docs/user_guide/quickstart.md @@ -74,6 +74,13 @@ Api URL: https://app.unleash-hosted.com/demo/api/ Secret key: 56907a2fa53c1d16101d509a10b78e36190b0f918d9f122d ``` +Curl command test credentials and retrieve feature toggles: + +``` +curl https://app.unleash-hosted.com/demo/api/client/features \ +-H "Authorization: 56907a2fa53c1d16101d509a10b78e36190b0f918d9f122d"; +``` + Now you can open up your application code and create a connection to Unleash using one of our [SDKs](sdks/index.md). Here's an example using the NodeJS SDK: ```javascript