cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

How to identify the user who invoked the service

arunkumar1
1-Newbie

How to identify the user who invoked the service

Hi,

How to identify the user who invoked the service?

One option I'm aware of is based on the appKey

     var loggedInUser = Resources["CurrentSessionInfo"].GetCurrentUser();

with this approach, I had to create an appKey for each user.

What other options are available? If i didn't want to generate a new appKey for every user.

Regards

Arunkumar D

1 ACCEPTED SOLUTION

Accepted Solutions

Nope.

If we invoke the service using appKey, GetCurrentUser() would give the user associated with that appKey.

Anyway, one another approach I found to identify the user is to use Authorization header. Like below:

curl -X POST -u username:password -H "Accept:application/json" -H "Content-Type:application/json" "http://hostname/Thingworx/Things/TestThing/Services/TestAPI"

I find this approach would fit me for now, instead of creating an appKey for every user.

Regards

Arunkumar D

View solution in original post

2 REPLIES 2

Resources["CurrentSessionInfo"].GetCurrentUser() doesn't depend on appkeys; it returns whoever the current user is.

Nope.

If we invoke the service using appKey, GetCurrentUser() would give the user associated with that appKey.

Anyway, one another approach I found to identify the user is to use Authorization header. Like below:

curl -X POST -u username:password -H "Accept:application/json" -H "Content-Type:application/json" "http://hostname/Thingworx/Things/TestThing/Services/TestAPI"

I find this approach would fit me for now, instead of creating an appKey for every user.

Regards

Arunkumar D

Top Tags