-
Notifications
You must be signed in to change notification settings - Fork 415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anonymous Identities #168
Comments
We need to figure out the best design for the SDK interface. For example, the Java SDK has: FeatureUser user = new FeatureUser();
user.setIdentifier(identifier);
FlagsAndTraits flagsAndTraits = flagsmithClient.identifyUserWithTraits(FeatureUser user, Arrays.asList(
trait(null, "trait1", "some value1"),
trait(null, "trait2", "some value2"))); For anonymous identities, suggest: FeatureUser user = new FeatureUser();
user.setAnonymousIdentifier(identifier);
FlagsAndTraits flagsAndTraits = flagsmithClient.identifyUserWithTraits(FeatureUser user, Arrays.asList(
trait(null, "trait1", "some value1"),
trait(null, "trait2", "some value2"))); |
We also need to consider how this is handled with the Analytics integrations. |
I can't do much on this my side, it might be worth assigning an issue to the JS SDK / for the admin panel when we add a filter. I think also it might be worth considering making this a trait rather than a new field so that users can segment on anon users |
This, to me, is a must have feature as more and more UX will push for a deferred account creation; ie wait until (anonymous) user has experienced enough value before asking him to convert into a logged user. It surely is a trend and we want to start A/B testing way before user has created an account. |
We do want to get to this - most likely Q2 2023. |
OK so current thinking is:
Questions
|
It looks very nice. @dabeeeenster We can imagine an app with half of the application does not required to be logged in. So it would be important to store the traits of a seed. |
@dabeeeenster do you have an estimation of when this feature will be available? |
Not currently. We'd like to get it complete next quarter but we still have a backlog of Enterprise features we are working through, sorry. |
Still no progress on this? Still doesn't seem to be a way to use anonymous_ids |
Seriously considering moving away from Flagsmith for this very reason. Too bad this long awaited request hasn't been prioritized so far. Very useful for consumer focused businesses. |
We are about to start work on this - thanks for hanging in there people! |
@dabeeeenster - any update regarding this? |
It has slipped! We are planning on building this the current quarter. |
@dabeeeenster - any update regarding this? |
Hi @taltcher, we are progressing this but it's still in progress I'm afraid, we have had other priorities for our enterprise product this year. We have updated the content of the discussion here which details our proposed implementation of identity contexts, and anonymous identities. If you have any additional feedback on the proposal, we'd love to hear it. We are hoping to make more progress on the development early next year and will of course keep you updated on this issue. |
This is on hold while we work on #4278 which will implement a lot of the necessary functionality needed for anonymous identities. |
Anonymous Identity handling improvements:
merge
method.anonymous_id
property that theidentify
endpoint can acceptanonymous_id
and makes the new ID the primary Identity ID so that administrators can search on the primary ID.If present, the field
anonymous_id
is always used when calculating segment buckets/MV flags etc. This is to prevent a user moving between buckets before/after a merge.What to do if we are asked to merge an Identity that already exists?
We overwrite the new
anonymous_id
with the existinganonymous_id
The text was updated successfully, but these errors were encountered: