Hi,
When i buy plan with different user but In RevenueCat Dashboard It show all user is same. It show current buy plan user.
Hi,
When i buy plan with different user but In RevenueCat Dashboard It show all user is same. It show current buy plan user.
There’s probably an issue with how you set up user identification in your SDK configuration. Is it possible that you’ve hardcoded a value when calling configure or logIn? Something like
Purchases.configure(withAPIKey: "appl_a1b2c3d4", appUserID: "john-doe")
or
Purchases.shared.logIn("john-doe") { (customerInfo, created, error) in
// customerInfo updated for my_app_user_id
}
If you don’t manage users in your own backend or in a different user management service, you will probably won’t need to use `logIn` or pass an `appUserID` to the configure method, and just use RevenueCat with Anonymous App User IDs.
Then how to give the appUserID
If you hardcode a value for `appUserId` in `configure` or `logIn`, then all users will be identified as the same one. If you don’t have a user management system, you could completely ignore that and the SDK will generate anonymous `appUserId` automatically for each user, as explained in the docs: https://www.revenuecat.com/docs/user-ids#anonymous-app-user-ids.
If SDK will generate anonymous appUserId, then how can i detect the user in dashboard.
Hi
We need to associate a purchase to a user. You can either use anonymous or non anonymous users. If you don’t set the ID of the user (on configuration or calling login), we we’ll generate an anonymous ID for that user.
If you use your own IDs, you have to make sure that you are associating the purchase to the corresponding user.
> how can i detect the user in dashboard .
You’ll have the customer list to see all the users. What do you want to see in particular for that user?
Regards,
Marcos
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.