Is it possible to see user journey of a userId? - flurry

I set the userId for my users and I saw this parameter in debug console for my test devices. but users do not have this field in their user journey
Thanks

Correct, at this time User Journeys do not show user IDs.

Related

How to pre-create users with shared mail for password reset via Graph API

How is it possible to pre-create users programmatically (via Graph-API) and have a same mail address configured for them to be used along with the password reset user flow?
I figured that the signInNames mail or StrongAuthenticationUserDetails mail attribute are being used with the standard flow. BUT, signInNames are unique and StrongAuthenticationUserDetails (Authentication contact info: Email) is not editable via Graph API as of now.
Any idea how to accomplish the scenario above without developing our own password reset flow?
I assume the scenario is creating user by invitation, where customer changes their password after first login.
Here is the sample for doing that
https://github.com/azure-ad-b2c/samples/tree/master/policies/invite
If you want to use the user flows,
You can create a user account as mentioned below, and then set the password reset user flow link to them. But then you will need to ask your customers to update profile as well, so that you know more about them.
https://learn.microsoft.com/en-us/azure/active-directory-b2c/active-directory-b2c-devquickstarts-graph-dotnet?tabs=applications#create-consumer-user-accounts

Tracking a user using userID in Flurry Analytics

I have a simple question,
Is it possible to track a user using their userID in Flurry?
I know I can user setUserID in my event but is it possible to see all the events from a user say abc#xyz.com has gone through?
Currently, I can see it as Following For User 036(is there a way to find the same using userID):
No, it is not possible to filter on a single user ID in User Journeys

how to prevent a user to access API's when a admin deactivate him but at the time of deactivation he's already logged in

I have one user who is logged in, at the same time ADMIN deactivate him.
As he is logged in so he can access APIs so how can i prevent him ,i am using jwt
You can get the user id from the JWT. Then, when doing an operation in the API, check if the user is banned. If the user is banned, send a response back saying the user is banned. So, he will be 'deactivated'.
https://github.com/esl/MongooseIM/issues/2235
As per the link above, there is no current way to ban/deactivate a user in the JWT Auth backend. However, if you were to delete the user, their user ID and token combination would cause for the same effect you are looking for: restricting their access to data.
In this case, I would delete the user instead of 'deactivating' them.

Need to change a user's email used for auth0 by admin

In the application, we are using auth0 to login to the application. we have two type of users, admin and agent. Need to update the agent's email associated with auth0 login by admin. How can we do that? there is a way a user can change his/her own email but here another person can change the email for someone. Need a help here
Go through: https://auth0.com/docs/api/management/v2/#!/Users/patch_users_by_id
but it is for user can change his/her own email
Take a look at this video:
https://www.youtube.com/watch?v=RMza7El7IwE&feature=youtu.be
There is no out of the box solution, but the platform allows you to achieve the desired result via the management api. Let us know if you have questions. You can always visit the Auth0 Community if you want more eyes on the topic.

calim user (employee) account for the first time

i may sound dummy , but i ran into a problem while creating claim page for the company employee.
Background:
in my company, Admin create employee account base of information given by employee,but no user name or password set up that time. (which we called unclaimed account). when employee login first time, he/she has to provide some information (To see if this user match with data which he/she provide us). if employee given information is correct let them create user name and password.
problem:
every thing work fine. But after they claim there account it take them to login page and ask them user name and password. i am trying to avoid login page. when they create there user name and password they should be able to go to there home page not login page.
any help will be appreciated.
thanks.
i found the solution:
create a security token after the user sets their account.
http://msdn.microsoft.com/en-us/library/microsoft.sharepoint.identitymodel.aspx

Resources