2

我正在尝试使用 Optimizely 文档中的以下代码:

Map<String, Object> attributes = new HashMap<>();
attributes.put("device", "iPhone");
attributes.put("lifetime", 24738388);
attributes.put("is_logged_in", true);

Boolean enabled = optimizelyClient.isFeatureEnabled("new_feature", "user123", attributes);

optimizely api中,我将实验设置为“new_feature”,变体键为“var1”,用户属性为具有上述属性的受众定位。我已将 user123 列入白名单。但我认为我的实验没有被激活或收到任何流量。我在这里错过了什么吗?任何提示有帮助吗?

4

1 回答 1

0

isFeaturerEnabled是功能标志的 API。

您可以将实验设置为独立对象功能标志上的实验。

如果您只想为独立实验激活用户,您将使用activate(experimentKey, userID).

如果您想激活用户对功能标志进行实验,您可以isFeatureEnabled像现在一样使用。

有关激活 API 的更多详细信息,请单击此处

于 2020-07-25T17:52:33.500 回答