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 d4e2f17 commit 3874fa1Copy full SHA for 3874fa1
demo/main.js
@@ -1,8 +1,8 @@
1
const Gleap = window.Gleap;
2
3
-Gleap.setFrameUrl("http://0.0.0.0:3001");
4
-Gleap.setApiUrl("http://0.0.0.0:9000");
5
-Gleap.initialize("ogWhNhuiZcGWrva5nlDS8l7a78OfaLlV");
+//Gleap.setFrameUrl("http://0.0.0.0:3001");
+//Gleap.setApiUrl("http://0.0.0.0:9000");
+Gleap.initialize("KProDXhMS0V3UUku2iNnrZ4XsBnAYzxt");
6
//Gleap.setEnvironment("dev");
7
8
Gleap.attachCustomData({
@@ -14,6 +14,13 @@ Gleap.attachCustomData({
14
},
15
});
16
17
+Gleap.identify("123456789", {
18
+ name: "John Doe",
19
+});
20
+
21
+let userIdentified = Gleap.isUserIdentified();
22
+console.log("userIdentified", userIdentified);
23
24
Gleap.log("Test log");
25
Gleap.log("Test log info", "INFO");
26
Gleap.log("Test log warn", "WARNING");
0 commit comments