Outbound REST JWT without OAuth
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-18-2024 12:06 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-29-2024 01:20 AM
Please refer to the below post and implement JWT bearer token for your integration.
Integrating ServiceNow to Box With JWT
- Kailas
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-29-2024 10:50 AM
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.