I've got a small review system built in AngularJS and Firebase and the only way to identify which review is made by which user is via the uid
of the user. The idea is when you then click on the user's name, you should be taken to the profile of that user.
So I would then create a route looking like /profile/{{review.author.uid}}
which could translate into /profile/facebook:123234243
for example.
My question is, does it pose a security threat showing the uid
in the url like this? Can it be used for any malicious actions against a user's third party account etc?
I've tried looking through their website but I can't find anything on this subject.
EDIT: Note that I need a Firebase specific answer, not a generic one about database id:s.