From dbecfc3b21bfaa28b0609830a9ef451eba08601f Mon Sep 17 00:00:00 2001 From: dylan Date: Tue, 6 Aug 2024 14:35:57 -0700 Subject: [PATCH] info about the personal api key --- .../feature-flags-code/_snippets/feature-flags-code-go.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contents/docs/integrate/feature-flags-code/_snippets/feature-flags-code-go.mdx b/contents/docs/integrate/feature-flags-code/_snippets/feature-flags-code-go.mdx index 978cbec20ac8..8d613e3e8343 100644 --- a/contents/docs/integrate/feature-flags-code/_snippets/feature-flags-code-go.mdx +++ b/contents/docs/integrate/feature-flags-code/_snippets/feature-flags-code-go.mdx @@ -101,7 +101,7 @@ You can configure the `FeatureFlagRequestTimeout` parameter when initializing yo client, _ := posthog.NewWithConfig( os.Getenv(""), posthog.Config{ - PersonalApiKey: "your personal API key", // Required for feature flags + PersonalApiKey: "your personal API key", // Optional, but much more performant. If this token is not supplied, then fetching feature flag values will be slower. Endpoint: "", FeatureFlagRequestTimeout: 3 // Time in seconds. Default is 3. },