Questions tagged [userid]

Used by services, systems , programs and etc to uniquely identify the user. The User ID might or might not coincide with the user name.

455 questions
2
votes
3 answers

Get current user id without access_token for poll app?

Can I get the user_id without him acepting my app? I need to build a poll app that should not require auth do vote. If I can store the user_id I can make sure all votes are unique... Thanks
Hugo Tavares
  • 37
  • 1
  • 6
2
votes
2 answers

$facebook->getUser(); STILL returning 0

I see this has been asked a lot here but I still have yet to come up with a solution. I need to get the user's ID to determine if they have already filled out a form in my app. Here is my code.. require_once('facebook.php'); $facebook = new…
Dustin
  • 4,314
  • 12
  • 53
  • 91
2
votes
1 answer

Is there a way to translate user/group IDs when running a Docker container?

I know you can specify user and group IDs with the docker run command and you can force the same IDs when building an image in order to have an easy life dealing with file permissions (e.g. as described here). But what if you want to reuse an image…
frans
  • 8,868
  • 11
  • 58
  • 132
2
votes
0 answers

how to get user id after token authentication - REACT

I'm new at coding so hoping this is something simple. I am trying to create delete/update functions for the user when they go to their profile. To delete and update my api needs the user id…
Kristy
  • 21
  • 3
2
votes
3 answers

Holding userid in ASP.net

I am using ASP.net for developing an intranet website. I need to hold the userid across all postbacks for all the pages in the website. Is it advisable to hold those information in Session or somether way is available.
web dunia
  • 9,381
  • 18
  • 52
  • 64
2
votes
1 answer

How to get the user ID from a WC_Subscription instance Object

I have two functions I need help with that I hope can handle my subscription tasks. The code comments (// ...) is what I'm trying to figure out. If you have other feedback, I'm open to them as well. This one for completed initial subscription…
yanike
  • 827
  • 3
  • 13
  • 29
2
votes
1 answer

Filter WooCommerce orders by shop manager based on assigned taxonomy terms

I would like to assign orders with specific product tags to a specific store manager in the backend and hide the rest of the orders. I am currently using Order Splitter for WooCommerce free plugin to split orders into separate orders by item…
2
votes
2 answers

Understanding the use of the user ID in a 3-legged OAuth session?

After a real brain bending session today I feel like I understand 3-legged OAuth authentication fairly well. What I'm still having trouble understanding is the use of the User ID. The examples I have seen so far all seem to just arbitrarily assign…
Robert Oschler
  • 14,153
  • 18
  • 94
  • 227
2
votes
0 answers

How can I set user_id in OAuth 2.0 PHP Server?

I'm using bshaffer OAuth 2.0 PHP Server. I want to create a token with user_id. How can I achive this? I don't know if I have to make it after the handleTokenRequest() or before? Within one response or in a separate api request? My token…
LuiKang
  • 83
  • 1
  • 7
2
votes
0 answers

How to find by user id specific user session using PdoSessionHandler in Symfony?

I'm using Symfony session management system with PdoSessionHandler and I need to find specific session entry using user id saved in session data. Because manually searching every session blob data could be costly my idea is to add another column…
2
votes
1 answer

Migrating from Mysql to Cassandra

Previously I was using the class found here to convert userID to some random string. From his blog: Running: alphaID(9007199254740989); will return 'PpQXn7COf' and: alphaID('PpQXn7COf', true); will return '9007199254740989' So the idea was that…
Writecoder
  • 613
  • 2
  • 8
  • 27
2
votes
2 answers

How to get the identity of the user who ran a report to print in Footer?

I am attempting to get user information from Microsoft Active Directory to appear in the footer of my reports. I have tried: =mid(User!UserID , InStr(User!UserID,"\")+1) =User!UserID neither return with the login name used to access windows from…
2
votes
1 answer

How to view the userID in the Google Analytics interface?

Below is the code for tracking the userId that I set in the iOS project, but I can't find the word userId in the Google Analytics interface. How can I view the userId(“my_user_id”) that I uploaded to the Google Analytics interface? guard let tracker…
White wu
  • 95
  • 1
  • 8
2
votes
1 answer

Delete without ClientID - User Deletion API Google Analytics

I have a question regarding User Deletion API for Google Analytics. We have a Property and View that does not collect UserID or ClientID as Custom Dimension, but we have a lot of PII data in our Events report (emails and phone numbers). When i go…
Asim
  • 936
  • 2
  • 10
  • 29
2
votes
0 answers

How to get fb app scoped id from global id and access token?

I have created test users in FB test accounts page. I can see user global ids there and can get user related access tokens for each user in format v2.10 and v2.11 of the app. How to get user application scoped id based on this 2 parameters? I have…