Tagged Questions
The userid tag has no wiki summary.
3
votes
5answers
98 views
Is mysql auto increment safe to use as userID?
I am working on website that allows people to create profiles online. I was wondering if it is the right choice to use MySQL AUTO_INCREMENTed IDs as my user ids. Also bearing in mind that I might have ...
3
votes
1answer
424 views
sharedUserId: safe to change when app is already in market?
For the next version of our application, I want to change the sharedUserId since we now use an internal control dashboard app which must write to the other app's settings files.
But since the app is ...
2
votes
1answer
278 views
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);
...
2
votes
1answer
267 views
How do I programmatically determine a Google Account USERID token from a Gmail address without credentials?
I'm developing something with the Google Books API, but I think this can be generalized across many of Google's APIs.
Suppose I have an app that's got a social aspect where I can add friends and see ...
2
votes
1answer
620 views
ASP.NET Conversion failed when converting from a character string to uniqueidentifier
i have a table which has a primary key (UserID) this is of type UniqueIdentifier.
im trying to insert a value into this field but i keep getting an error.
i want to get the userID of the current user ...
2
votes
2answers
3k views
Get UserID from ASP.Net Login control LoggedIn event
In ASP.Net, I am trying to get the UserId (i.e., the user GUID) of the user that just logged on, in the LoggedIn event of the Login control. That is, I want to grab the UserId before the user is moved ...
2
votes
3answers
659 views
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 ...
1
vote
0answers
10 views
Is the UserId in LVL responses unique?
I am using Googles Licensing in my apps and I wonder if the UserId that is part of the license answer from the market is unique to the user?
1
vote
1answer
24 views
How to generate UserID as created with new user registration?
I have a normal database and not using any membership provider and I would like to auto-generate a new user ID which is created in database with a new user registration.
As seen below this is what I ...
1
vote
2answers
184 views
$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..
...
1
vote
3answers
89 views
Generating User IDs in Python
I've created a simple DB using SQLAlchemy in python and there is a column for a unique user ID for each user entered. I want to have a running counter that supplies the next ID whenever a new User is ...
1
vote
2answers
177 views
MVC3 and User Management
I'm a newbie in .NET framework but have a vast experience in other MVC based frameworks like Symfony and Zend frameworks.
I have an application which requires workshop participants to register and ...
1
vote
1answer
321 views
Twitter - get user_id or screen_name querying by user e-mail
I'm trying to get the user_id or screen_name querying per e-mails on Twitter.
We have a website and also a database of users. I have also all user's e-mail and I'd like to query if they have a ...
1
vote
2answers
258 views
Why saved set userID is needed?
In Unix, when exec
If Real user ID is not same with file owner, and Set user ID bit is on, then, effective user id is changed to file owner's, and saved set user ID too.
Because Effective user ID is ...
1
vote
2answers
817 views
Check UserID exists in Active Directory using C#
How can we check whether the USERID exists in Active Directory or not.
I have LDAP String and UserID, can I find whether that UserID exists in Active Directory or not. I am using this for ASP.NET ...
1
vote
1answer
48 views
Using a “custom” user ID as opposed to the user's real, auto_incremented database ID in web applications?
I'm not sure about its terminology, but for http://www.somedomain.com/user/123456, the "custom user ID" I'm referring to is 123456. I have seen this on quite a lot of websites, in fact, even SO uses ...
1
vote
2answers
2k views
ASP.NET MVC2 Membership: How to get userID and roleID of logged user?
How can I get userID and roleID of user that is logged to application? User.Identity doesn't contain these details?
Thanks,
Ile
1
vote
1answer
161 views
iphone app userid
I have an app where we want users to be able to send us email/info. This would be a standard template which will open up on a button click within the app.
I am struggling at the moment to find a ...
1
vote
7answers
97 views
Mapping an integer to a user name
A client and I were brainstorming a way to generate usernames from numeric user ids (generated by the database). The key requirement is that usernames are unique.
The most obvious solution would be ...
1
vote
2answers
569 views
Getting a UserId into a SQLDataSource
I am still new to asp.net and I'm having a problem that I just can't figure out.
I'm using vb and the .net membership api.
My question is, how do I get the current user's userid into a DetailsView ...
1
vote
1answer
147 views
Is it possible to display “Display Name” in TFS Source Control?
Our company uses a 'user number' for our primary network ID. We do use Active Directory for managing our users, so we can associate our user number with a Display Name.
TFS Source Control by default ...
1
vote
0answers
206 views
ProviderKey the only option for unique identifier in MembershipUser object?
I'm trying to integrate an existing schema into a custom provider but the MembershipUser object only seems to have ProviderKey, an object, based on a uniqueIdentifier.
How can I store my existing set ...
0
votes
2answers
34 views
get user_id Devise in nested form rails 3.1
I'm follow this tutorial http://railscasts.com/episodes/196-nested-model-form-part-1 for nested form.
I have 3 model the first user.rb:
class User
has_many :boards, dependent: :destroy
has_many ...
0
votes
0answers
41 views
$facebook->getUser() gives the same userid even when i am logged in as a diff FB user?
I am developing a little app and it looks like the loggin process doesn't work. If i logged out and login as a diff. FB user i still get the userid of the first loggedin user. I don't use sessions.
0
votes
2answers
39 views
Convert Facebook names to id numbers
I've noticed some difference in Facebook profiles :
Some of them have the following string format at browser nav bar :
http://facebook.com/john.smith
and the others look like this :
...
0
votes
1answer
139 views
$facebook->getUser() ALWAYS Returning ID - Can't Logout
for some reason no matter what I do, this is always returning a valid ID and Facebook information. To logout, I am using Facebook.Logout, redirecting to a page where I clear ALL cookies including ...
0
votes
3answers
58 views
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
0
votes
2answers
81 views
need retrieving userid from facebook c# sdk without making a request to facebook for it
I need to get an easy facebook userid without having to do a request to facebook.
I am at a loss. I have been using the 'FBConnectAuth.dll' se easily for all my facebooking in my web application but ...
0
votes
1answer
57 views
Fetch user id and profile picture - mysql
I'm a beginner when it comes to php/scripting - or "websiting" in general.
What I really would like to do, is to fetch a users profile picture and user id, when the person clicks on the "Login with ...
0
votes
3answers
86 views
How to get userID for username in ASMX webservice
I'm trying to store a user's post into an access database through a web method. I want to store the logged-in user's username, user's post, and the post datetime.
So far, I can store an existing ...
0
votes
1answer
39 views
Get userID with the new JS SDK
how would you do something like:
strUserID = FB.getSession().uid;
with the new JS SDK?
simple call to get the users id after logged in?
0
votes
1answer
27 views
Loading profile pictures with Graph API not working for large user IDs
I'm trying to load in the profile pictures of a large array of users, but I was finding that a few weren't loading in. When I tracked these down, it seems that they have much higher user IDs than the ...
0
votes
1answer
49 views
Changing ToolStripMenuItem Enabled Property Based on Successful Login
What I've done so far . . .
Private Sub LogInToolStripMenuItem_Click(sender As System.Object, e As System.EventArgs) Handles LogInToolStripMenuItem.Click
Try
If (txtAdminUserId.Text ...
0
votes
0answers
212 views
Get User-ID not working sometimes?
i am having some issue with an app i made recently.
Its a voting app that is supposed to allow voting once per day for every user.
So i am taking the user id and placing every user-id in a database, ...
0
votes
0answers
15 views
Unable to Complete Typing My Log on ID [closed]
I am trying to access an online account but I am unable to complete typing my user id. I can only type a few characters, then It will stop before I complete my UserID. I was able to log on a few hours ...
0
votes
1answer
122 views
Name/UID on page tab without authentication?
I had previously thought there was no way to get a user's information, specifically their userid, without first getting them to authenticate your app. I see that this page, however, does that on a ...
0
votes
2answers
74 views
User content Folder Structure based on UserID while hiding total users
I'm trying to figure out a folder structure for storing user content such as images, which will work for a massive amount of users. I was going to go with something like... 000/000/001 (user id 1) ...
0
votes
0answers
22 views
How can I link to docs without needing a UserId?
I'm creating a forms section on our intranet, I want to be able to link direct to specific forms so that it opens immediately. Currently all our forms are MS Word templates that you access by opening ...
0
votes
1answer
122 views
Adding a user_id to a Message model
I currently have a simple app that includes user authentication through devise and a message model(the message model uses Jquery and Faye). Both are working fine independently, but I would like to add ...
0
votes
1answer
113 views
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 ...
0
votes
1answer
329 views
Getting a username from a userID (guid) in asp.net web forms
So I'm almost finished my project but I'm stuck. In my application's database I save some records that contain the currently logged in user's userID - and so when it comes to displaying these records, ...
0
votes
2answers
263 views
How can I get UserName or UserId from loginName control?
I'm wondering is there any way i could get UserName or UserId for current User from LoginName control in ASP.NET ?
0
votes
2answers
107 views
Detecting is a user is an administrator (or any type) per page, asp.net mvc default membership provider
I'm building a web application, and I would like to make certain functions on the front end visible when a user is logged in as an administrator.
I am using the default membership provider, but I ...
0
votes
1answer
250 views
Drupal: Catcing userId in hook_init();
I have the following code in a custom module as well as I have firePHP installed (dfb($userId) is supposed to be written in the console).
At every page pageload I want to catch and print the current ...
0
votes
1answer
1k views
Facebook App FBML, fb:friend-selector get friend userid
i am trying to get the current logged in user's friends, they should select one friend using the form below and then submit it to the same page.
The script is suppose to get the friend's userid (only ...
0
votes
1answer
377 views
SharePoint 2007: AfterProperties of person input field shows always -1 as lookupid
I'm struggling with the SharePoint 2007 AfterProperties. I've a people input field, where several people can be added.
On the ItemUpdating event I now need to determine which users were added, ...
0
votes
2answers
142 views
Manually Add a User to Database ASP.NET?
So when your using ASP.NET Wizards to create a login, it uses a set of auto generated tables using the aspnet_regsql.exe tool...
When you create a user using the wizard it generates a very long ...
0
votes
2answers
606 views
iPhone Twitter Get UserId
I am looking for a way to get a twitter users userid via their username.
For example take http://twitter.com/AlySSa_miLAno (yes I know her twitter page off by heart lol) on the right hand side of the ...
0
votes
2answers
324 views
oauth and userid
i am very confused, once i get the access token from google to access user contacts,
how do I associate that user with that token again in the future?
many thanks
0
votes
2answers
464 views
LinqDataSource - how do I select rows based on the current UserId?
I have a Grid View control that displays data based on what is returned by the LinqDataSource. The LinqDataSource selects data depending on the date chosen in a date control (used in the where ...