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

PostJSON with user authentication

mmunuswamy
6-Contributor

PostJSON with user authentication

I am looking for a sample code invoking PostJSON service with user authentication across session.

i.e Once user is authenticated during first use(login) subsequent REST calls should use the current user(session user) &password.

How do i pass the username & password to PostJSON, dynamically by taking it from the current session

var params = {

proxyScheme: undefined /* STRING */,

headers: undefined /* JSON */,

ignoreSSLErrors: undefined /* BOOLEAN */,

useNTLM: undefined /* BOOLEAN */,

workstation: undefined /* STRING */,

useProxy: undefined /* BOOLEAN */,

withCookies: undefined /* BOOLEAN */,

proxyHost: undefined /* STRING */,

url: undefined /* STRING */,

content: undefined /* JSON */,

timeout: undefined /* NUMBER */,

proxyPort: undefined /* INTEGER */,

password: sessionpassword?? /* STRING */,

domain: undefined /* STRING */,

username: sessionuser?? /* STRING */

};

1 REPLY 1

I've done this with Salesforce.. Using PostJSON to get a session token and then using it in subsequent services.  It will depend on the API of the site you're authenticating with though.  Here's my example:

Connecting to Salesforce with ThingWorx - EAC Product Development Solutions

Top Tags