Questions tagged [uid]

uid refers to a string used for record keeping which is not guaranteed to be unique, but should be in the large majority of use cases.

uid stands for one of the following:

  • user identifier
  • unique identifier

References

368 questions
1
vote
0 answers

404 error while activating user in djoser (django)

I created class based view to access uid and token . Here I create one web page which have one button of activate user. I wish to activate user that created. I am receiving the activation link via email. When I click on the link an activation page…
1
vote
1 answer

getting error while posting data of uid and token ( 'WSGIRequest' object has no attribute 'post' )

I created class based view to access uid and token . Here I create one web page which have one button of activate user. I am sending one uid and token to user email . now I want to post that uid and token when user click on button. I create this…
1
vote
1 answer

How can I display user avatar by knowing user ID(uid) in Drupal?

I want to display user picture if the user id is known. Is possible to do it without using additional modules?
Alexey
  • 7,127
  • 9
  • 57
  • 94
1
vote
2 answers

Flutter/Dart How to transform user uid from firebase in a variable?

I am trying to take the uid from Firebase and put it in a variable, to use it in another class, but the maximum I made until now is display the value in the homepage as a text. When I try to create final String riderId = snapshot.data.uid; in the…
cabral279
  • 97
  • 10
1
vote
1 answer

Rootless Podman UID mapping and volume mount issues

I am trying to start kafka inside a container via podman-compose. I am using /opt/kafka/kafka_2.12-2.4.1/bin/kafka-server-start.sh which is fine. However, I am mounting a directory that contains the properties file…
1
vote
0 answers

FuseFS for ruby gives me the wrong gid and uid

I am using the FuseFS ruby gem to create a custom filesystem in ruby 1.8. the only problem is, that while I am in the write_to method of my custom filesystem class the FuseFS.uid method only gives me 0 while it should return the valid uid of the…
HalloDu
  • 907
  • 1
  • 7
  • 16
1
vote
2 answers

How to get UID of document in Cloud Firestore Swift

Currently, my app is looping through all the documents in a collection in firebase, however I need to know which UID the data is from so that I can add to it later. Is there a way to find this out and if not, what are other alternative approaches…
Eshan
  • 115
  • 7
1
vote
1 answer

Can someone hack or misuse UID of a user in Firestore openly listed in a doc

(My app requires authentication), => I am making a collection THINGS and users from the collection USER can write doc to it. When they write to it, the doc id is automatically generated but in order to query the doc, i am adding a field in it…
1
vote
2 answers

Ruby/IMAP getting messages starting from the last saved mesage uid

I'm trying to get new messages starting from the last saved message id of a folder. Here's my code so far: self.imap_connection.examine(folder) imap_query = "UID SEARCH #{last_uid}:*" messages = self.imap_connection.search(imap_query) The only…
ghostrifle
  • 1,029
  • 1
  • 14
  • 24
1
vote
0 answers

Is there a way to quickly strip all but one UID (User ID) from a PGP public key?

I am attaching my PGP public key to the outgoing messages. My key however has 10 User IDs, each corresponding to a different email. I don't want the recipient to know all my other email addresses, so I want to strip them from the key before…
Veet Vivarto
  • 371
  • 3
  • 11
1
vote
1 answer

How to get a full android app UID programmatically?

Edit 10 Apr 2020 I may have misnamed what we are looking for. It may actually be the linux user name of the installed app, rather than its UID. So how should we get that programmatically? Original question below When we use adb shell ps even on a…
auspicious99
  • 3,902
  • 1
  • 44
  • 58
1
vote
1 answer

How to create a collection inside a uid document in Firestore using Flutter?

How do you create a sub-collection in Firestore with Flutter based on a dynamic uid? Architecture should look like this: users (collection) --> UID (document - unique to each user) --> vault (collection) --> credential (document) I am currently…
metamonkey
  • 427
  • 7
  • 33
1
vote
2 answers

How do I display the name of a user, in Facebook, using their uid?

I am loading the JavaScript SDK Asynchronously for my iframe canvas application. I am aware that fbml is deprecated and being phased out, but is xfbml still ok? Can I still use fb:name eg. ? Is there a better way to print the…
Trevor Boyle
  • 1,025
  • 7
  • 15
1
vote
1 answer

What can a process with UID 0 do that a process with EUID 0 can't?

I realised I've missed a subtlety with user IDs (UID) and effective user IDs (EUID) and need some clarification. N.B. I'm working on macOS, although I suspect everything makes sense in a Linux world as well. I've created a binary and set the setuid…
Andrew Parker
  • 1,425
  • 2
  • 20
  • 28
1
vote
2 answers

grab the current users first name cloud firebase swift

I have a Firebase Auth that stores the users, but it also builds a collection of users in the Cloud Firestore database. I can grab the users first name, but the problem I have is that it is always the last user that was added. here is my function in…
Blue Moose
  • 125
  • 1
  • 15