For the complete documentation index, see llms.txt. This page is also available as Markdown.

Identify User

API reference for identifying users with Luciq. Associate bug reports and crashes with specific users to enable user-based debugging and analysis.

This API is primarily used to identify your user, sort of like a log in kind of method. The API takes two strings, the user's email being the first, and the user's name for the second.

Luciq.identifyUser(withID: "1", email: "[email protected]", name: "John Appleseed")
[Luciq identifyUserWithID:@"1" email:@"[email protected]" name:@"John Appleseed"];
Luciq.identifyUser("user name", "email");
Luciq.identifyUser("user name", "email")
Luciq.identifyUser("[email protected]", "John Appleseed");
Luciq.identifyUserWithEmail(String email, [String name]);

IMPORTANT: userID Must Be Unique

Last updated