Outbound REST JWT without OAuth

NoahW
Tera Contributor

Hello,

 

I hope this is the right place to ask this. I am trying to send an outbound REST request to a third-party application. This application has a unique method to authenticate. It doesn't support OAuth as one would traditionally expect. Instead you send an API call to a an endpoint with a username/password and it returns a JWT for a session, then all authenticated calls use the JWT as a bearer token.

 

Is an integration like this possible with ServiceNow? I wasn't able to find anything online. Hoping someone here could point me in the right direction.

 

Thanks!

 

Noah

2 REPLIES 2

KB18
Tera Guru
Tera Guru

@NoahW 

 

Please refer to the below post and implement JWT bearer token for your integration.

 

Integrating ServiceNow to Box With JWT

Please hit the thumb Icon and mark as correct in case I help you with your query!!!
- Kailas

NoahW
Tera Contributor

Thanks for the advice. Unfortunately this wasn't a possible solution for me. I ended up building a reverse proxy that can pass basic authentication from ServiceNow and use a JWT in the proxy for the other application.