Hi,
Our app is a subscription streaming with Monthly and Yearly package.
The current flow we want to use with RC are:
1) . Subscription Purchase but the user not login yet to the app. So still as a guest
Guest > Purchase > Successful
Is it correct if we use this const { customerInfo, created } = await Purchases.logIn(guest_id); ?
Then we will force them to login before can use the full features of the app.
Login > successful
Because its already logged in, then we can get the actual subscriber_id for that user,
Is it correct if we use this const { customerInfo, created } = await Purchases.logIn(subscriber_id); ?
So in RC, the app_user_id will be updated with the latest one which is subscriber_id, whilst the original_app_user_id is still the original Anonyomous ID.
Then later, this user can login to any device / platform and still can get the same status of the subscription.
Is it my understanding on how to implement is correct?
Thank you
Question
App_user_id with Guest ID at first then later with real Subscriber ID after successful login to my App

This post has been closed for comments
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.