how can I delete a users analytics data from firebase in Unity mobile project using "Google User Deletion API" and userdeletionRequests:upsert?
I was looking in Firebase api but i didn't find anything, so i was trying to send POST like here: Some solution
But i don't know here i can find or how i can generate authorization token and i still got 401. I was trying to get token from this method:
string token = await FirebaseAuth.DefaultInstance.CurrentUser.TokenAsync(true)
But this is not the same token and i still get 401. Does anyone know how to fix this problem?