Skip to main content

Documentation Index

Fetch the complete documentation index at: https://launchdarkly-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Overview

This topic explains how to configure contexts as anonymous in LaunchDarkly SDKs. These features are available for all SDKs. Each SDK lets you designate anonymous contexts. Anonymous contexts don’t appear on your Contexts list, so you can’t search for them, and you can’t search for or autocomplete by their keys. If you use multi-contexts, you can choose to make only some contexts anonymous. To learn more, read Multi-contexts. In some client-side SDKs, if you don’t provide a key or set it to null, and set anonymous to true, then the SDK generates a random key for you. If you generate keys for anonymous contexts, session IDs or UUIDs work best. To learn more, read Anonymous contexts. Details about each SDK’s configuration are available in the SDK-specific sections below.
A context is a generalized way of referring to the people, services, machines, or other resources that encounter feature flags in your product. Contexts replace another data object in LaunchDarkly: “users.” To learn more, read Contexts.

Client-side SDKs

Here are the configuration options for anonymous contexts in client-side SDKs.

.NET (client-side)

To distinguish logged-in end users from anonymous end users in the SDK:
      Context context = Context.Builder("example-context-key")
          .Anonymous(true)
          .Build();
To auto-generate a key for any context whose anonymous attribute is true:
      var config = Configuration
          .Builder("example-mobile-key", ConfigurationBuilder.AutoEnvAttributes.Enabled)
          .GenerateAnonymousKeys(true)
          .Build();
If you set this option, you must still specify a non-null key as a placeholder when you construct the Context, because the SDK does not allow a Context to exist with a null key. When you pass this context to SDK methods like Init or Identify, the SDK replaces the placeholder key with a generated key.In this example, the placeholder key is “placeholder-key”, but it could be any non-empty string:
      Context context = Context.Builder("placeholder-key")
          .Anonymous(true)
          .Build();

Android

To distinguish logged-in end users from anonymous end users in the SDK:
      LDContext context = LDContext.builder("example-context-key")
          .anonymous(true)
          .build();
If you set this option, you must still specify a non-null key as a placeholder when you construct the LDContext, because this SDK does not allow a Context to exist with a null key. When you pass this context to SDK methods like Init or Identify, the SDK replaces the placeholder key with a LaunchDarkly-specific, device-unique string that is consistent between app restarts and device reboots.

C++ (client-side)

To distinguish logged-in end users from anonymous end users in the SDK:
      auto context = ContextBuilder()
        .Kind("user", "example-user-key")
        .Anonymous(true)
        .Build();
To learn more, read ContextBuilder.

Electron

To distinguish logged-in end users from anonymous end users in the SDK:
      const anonymousUser = { key: 'example-user-key', anonymous: true };
To create an anonymous user with an auto-generated key, specify the “anonymous” property and omit the “key” property. The LaunchDarkly client creates a unique key for this user and caches it locally:
      const anonymousUser = { anonymous: true };

Flutter

To distinguish logged-in end users from anonymous end users in the SDK:
      final context = LDContextBuilder()
        .kind('user', 'example-user-key')
        .anonymous(true)
        .build();
To learn more, read anonymous.

iOS

To distinguish logged-in end users from anonymous end users in the SDK:
      var contextBuilder = LDContextBuilder(key: "example-context-key")
      contextBuilder.anonymous(true)

      let context = contextBuilder.build().get()
Alternatively, you can omit the key parameter. The client will automatically set the isAnonymous property for the context, and set the key to a LaunchDarkly-specific, device-unique string that is consistent between app restarts and device reboots.Here’s how:
      // Have the SDK use a device persistent key.
      // This sets `isAnonymous` by default.
      let context = try LDContextBuilder().build().get()

Java

Script
To create an anonymous context, specify the anonymous property and omit the key property. The client will automatically set the key to a LaunchDarkly-specific, device-unique string that is consistent between app restarts and device reboots.Here’s how:
      const anonymousUserContext = {
        kind: 'user',
        anonymous: true
      };

      // A multi-context can contain both anonymous and non-anonymous contexts.
      // Here, the organization is not anonymous.
      const multiContext = {
        kind: 'multi',
        user: anonymousUserContext,
        org: {
          key: 'example-organization-key',
          name: 'Acme, Inc.'
        }
      }

Node.js (client-side)

To distinguish logged-in end users from anonymous end users in the SDK:
      const anonymousContext = { kind: 'user', key: 'example-user-key', anonymous: true };
You can also have the SDK generate the key for you. Specify the anonymous property and omit the key property. The client will automatically set the key to a LaunchDarkly-specific, device-unique string that is consistent between app restarts and device reboots.Here’s how:
      const anonymousContext = { kind: 'user', anonymous: true };

React Native

To create an create an anonymous context, specify the anonymous property and set the context key to an empty string.Here’s how:
      // This device context is anonymous
      const deviceContext = {
        // The key attribute is required and should be empty
        // The SDK will automatically generate a unique, stable key
        key: '',
        kind: 'device',
        deviceId: '12345',
        anonymous: true
      }

      // This user context is not anonymous
      const userContext = {
        kind: 'user',
        key: 'example-user-key'
      }

      // The multi-context contains one anonymous context
      // and one non-anonymous context
      const multiContext = {
        kind: 'multi',
        user: userContext,
        device: deviceContext
      }
In version 10 of the SDK, you must include the key attribute when building the anonymous context. If you set the key to an empty string, the client will automatically set the key to a LaunchDarkly-specific, device-unique string that is consistent between app restarts and device reboots. We strongly recommend having the client manage the key for anonymous contexts. If you set the key to a non-empty string, the client uses that value as the key. However, the key may not be stable across restarts or reboots.The SDK gives a usage error if you omit the key attribute. It also gives a usage error if you set the key to an empty string and do not mark the context as anonymous.In versions 7 through 9 of the SDK, you may omit the context key when building an anonymous context, and the client will automatically set it to a LaunchDarkly-specific, device-unique string that is consistent between app restarts and device reboots.

Using a shared key between anonymous contexts in React Native for Android

It is possible to use one, shared key between anonymous contexts. However, we do not recommend this. Using a shared key between anonymous contexts means that some features will be limited or will not work as expected. To learn more, read Use a shared key between anonymous contexts.If you are using an older version of the React Native SDK on Android, there is some additional configuration required if you want to use a shared key between anonymous contexts.
If you do choose to use a shared key between anonymous contexts, and you:
  • have an Android application
  • are using the React Native SDK in versions 7.x through 9.x
then you must also explicitly configure the SDK to allow using a shared key between anonymous contexts. The generateAnonymousKeysAndroid configuration option defaults to true, which means that the SDK will automatically generate unique keys for anonymous contexts. If you need to use a shared key between anonymous contexts, then you must set this option to false.To learn more, read generateAnonymousKeys.The React Native SDK for iOS generates a context key for anonymous contexts only if you do not supply one. No additional SDK configuration is required if you are using a shared key for anonymous contexts with the React Native SDK for iOS.

React Web

All context-related functionality provided by the JavaScript SDK is also available in the React Web SDK.

Roku

To distinguish logged-in end users from anonymous end users in the SDK:
      context = LaunchDarklyCreateContext({"key": "example-user-key", "kind": "user", "anonymous": true})

Server-side SDKs

Here are the configuration options for anonymous contexts in server-side SDKs:

.NET (server-side)

To distinguish logged-in end users from anonymous end users in the SDK:
      var context = Context.Builder("example-context-key")
          .Anonymous(true)
          .Build();

Apex

To distinguish logged-in end users from anonymous end users in the SDK:
      LDUser user = new LDUser.Builder('example-user-key')
          .setAnonymous(true)
          .build();

C++ (server-side)

To distinguish logged-in end users from anonymous end users in the SDK:
      auto context = ContextBuilder()
        .Kind("user", "example-user-key")
        .Anonymous(true)
        .Build();
To learn more, read ContextBuilder.

Erlang

To distinguish logged-in end users from anonymous end users in the SDK:
          Context = ldclient_context:set(anonymous, true,
              ldclient_context:new(<<"example-user-key">>))

Go

To distinguish logged-in end users from anonymous end users in the SDK:
      import (
          "github.com/launchdarkly/go-sdk-common/v3/ldcontext"
      )

      // Anonymous context with only a key
      context1 := ldcontext.NewBuilder("example-context-key").Anonymous(true)

      // Anonymous context with a key plus other attributes
      context2 := ldcontext.NewBuilder("context-key-456def").
          Anonymous(true).
          SetString("country", "Canada").
          Build()
Anonymous contexts do not appear on the Contexts list. Optionally, you can configure the SDK to omit data from anonymous contexts when sending related events to LaunchDarkly. Depending on how your application uses contexts, this can significantly decrease the amount of data your application sends to LaunchDarkly. To learn more, read EventsConfiguration.

Haskell

To distinguish logged-in end users from anonymous end users in the SDK:
      makeContext "example-user-key" "user"
        & withAnonymous True
Anonymous contexts do not appear on the Contexts list. Optionally, you can configure the SDK to omit data from anonymous contexts when sending related events to LaunchDarkly. Depending on how your application uses contexts, this can significantly decrease the amount of data your application sends to LaunchDarkly. To learn more, read configSetOmitAnonymousContexts.

Java

To distinguish logged-in end users from anonymous end users in the SDK:
      LDContext context = LDContext.builder("example-context-key")
        .anonymous(true)
        .build();

Lua

To distinguish logged-in end users from anonymous end users in the SDK:
      -- to create an anonymous user context
      local userContext = ld.makeContext({
          user = {
            key       = "example-user-key",
            anonymous = true
          }
      })

      -- to create an anonymous context of a different kind
      local deviceContext = ld.makeContext({
          device    = {
            key       = "example-device-key",
            anonymous = true
          }
      })

To learn more, read makeContext.

Node.js (server-side)

To distinguish logged-in end users from anonymous end users in the SDK:
      import * as ld from '@launchdarkly/node-server-sdk';

      const context: ld.LDContext = {
        kind: 'user',
        key: 'example-user-key',
        anonymous: true,
      }

PHP

To distinguish logged-in end users from anonymous end users in the SDK:
      $context = LDContext::builder("example-context-key")->anonymous(true)->build();

Python

To distinguish logged-in end users from anonymous end users in the SDK:
      context = Context.builder("example-context-key").anonymous(True).build()
Anonymous contexts do not appear on the Contexts list. Optionally, you can configure the SDK to omit data from anonymous contexts when sending related events to LaunchDarkly. Depending on how your application uses contexts, this can significantly decrease the amount of data your application sends to LaunchDarkly. To learn more, read omit_anonymous_contexts.

Ruby

To distinguish logged-in end users from anonymous end users in the SDK:
      context = LaunchDarkly::LDContext.create({ key: "example-context-key", anonymous: true })
Anonymous contexts do not appear on the Contexts list. Optionally, you can configure the SDK to omit data from anonymous contexts when sending related events to LaunchDarkly. Depending on how your application uses contexts, this can significantly decrease the amount of data your application sends to LaunchDarkly. To learn more, read omit_anonymous_contexts.

Rust

To distinguish logged-in end users from anonymous end users in the SDK:
      // Anonymous context with only a key
      let context = ContextBuilder::new("example-context-key").anonymous(true).build();

      // Anonymous context with a key plus other attributes
      let context = ContextBuilder::new("example-context-key").
          anonymous(true).
          set_value("country", "US".into()).
          build();
Anonymous contexts do not appear on the Contexts list. Optionally, you can configure the SDK to omit data from anonymous contexts when sending related events to LaunchDarkly. Depending on how your application uses contexts, this can significantly decrease the amount of data your application sends to LaunchDarkly. To learn more, read omit_anonymous_contexts.

Edge SDKs

Here are the configuration options for anonymous contexts in edge SDKs.

Akamai

To distinguish logged-in end users from anonymous end users in the SDK:
      import { LDContext } from '@launchdarkly/akamai-edgeworker-sdk-common';

      const anonymousContext: LDContext = { kind: 'user', key: 'example-user-key', anonymous: true };

Cloudflare

To distinguish logged-in end users from anonymous end users in the SDK:
      import type { LDContext } from '@launchdarkly/cloudflare-server-sdk';

      const anonymousContext: LDContext = { kind: 'user', key: 'example-user-key', anonymous: true };

Fastly

To distinguish logged-in end users from anonymous end users in the SDK:
      import type { LDContext } from '@launchdarkly/js-server-sdk-common';

      const anonymousContext: LDContext = { kind: 'user', key: 'example-user-key', anonymous: true };

Vercel

To distinguish logged-in end users from anonymous end users in the SDK:
      import type { LDContext } from '@launchdarkly/vercel-server-sdk';

      const anonymousContext: LDContext = { kind: 'user', key: 'example-user-key', anonymous: true };

AI SDKs

Here are the configuration options for anonymous contexts in AI SDKs.

.NET AI

To distinguish logged-in end users from anonymous end users in the SDK:
      var context = Context.Builder("example-context-key")
          .Anonymous(true)
          .Build();

Go AI

To distinguish logged-in end users from anonymous end users in the SDK:
      import (
          "github.com/launchdarkly/go-sdk-common/v3/ldcontext"
      )

      // Anonymous context with only a key
      context1 := ldcontext.NewBuilder("example-context-key").Anonymous(true)

      // Anonymous context with a key plus other attributes
      context2 := ldcontext.NewBuilder("context-key-456def").
          Anonymous(true).
          SetString("country", "Canada").
          Build()

Node.js (server-side) AI

To distinguish logged-in end users from anonymous end users in the SDK:
      const context: LDContext = {
        kind: 'user',
        key: 'example-user-key',
        anonymous: true,
      }
Anonymous contexts do not appear on the Contexts list.

Python AI

To distinguish logged-in end users from anonymous end users in the SDK:
      context = Context.builder("example-context-key").anonymous(True).build()
Anonymous contexts do not appear on the Contexts list. Optionally, you can configure the SDK to omit data from anonymous contexts when sending related events to LaunchDarkly. Depending on how your application uses contexts, this can significantly decrease the amount of data your application sends to LaunchDarkly. To learn more, read omit_anonymous_contexts.

Ruby AI

To distinguish logged-in end users from anonymous end users in the SDK:
      context = LaunchDarkly::LDContext.create({ key: "example-context-key", anonymous: true })
Anonymous contexts do not appear on the Contexts list. Optionally, you can configure the SDK to omit data from anonymous contexts when sending related events to LaunchDarkly. Depending on how your application uses contexts, this can significantly decrease the amount of data your application sends to LaunchDarkly. To learn more, read omit_anonymous_contexts.