문제

Basically I have used the following code to log an event in the mix panel.

         [mixpanel track:@"App Launched"];
         [mixpanel identify:[user objectForKey:@"email"]];
         mixpanel.nameTag =[user objectForKey:@"email"];

But the problem is that Mixpanel stream is showing Guest#2324 instead of the emailID. I have confirmed that I am getting [user objectForKey:@"email"] value. Can anybody figure it out as where I am doing wrong. I have initialized the mix panel using

mixpanel = [Mixpanel sharedInstance];
도움이 되었습니까?

해결책

May be remove the identify line from the above code.As identify is used to identify the device.Refer Mixpanel for more details.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top