We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0291807 commit 9b187a0Copy full SHA for 9b187a0
README.md
@@ -53,11 +53,11 @@ Or via CDN:
53
After you install and import the SDK, create a single, shared instance of the FeatureProbe sdk.
54
55
```js
56
-const user = new featureProbe.FPUser("#USER-KEY#");
57
-user.with("#ATTR-KEY#", "#ATTR-VALUE#");
+const user = new featureProbe.FPUser("user");
+user.with("key", "value");
58
59
const fp = new featureProbe.FeatureProbe({
60
- remoteUrl: "#OPEN-API-URL#",
+ remoteUrl: "https://127.0.0.1:4007",
61
clientSdkKey: '#YOUR-CLIENT-SDK-KEY#',
62
user,
63
});
0 commit comments