Hello,
Welcome to Microsoft Q&A!
I noticed that you are using the code
_storeContext = StoreContext.GetForUser(firstUser);
This is the code for multi user apps. As @Viorel said, if you are just a normal UWP application which is single user, you could just try the following instead
_storeContext = StoreContext.GetDefault();
Then you could call the following code:
StoreRateAndReviewResult result = await _storeContext.RequestRateAndReviewAppAsync();
Thank you.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Any updates about this?