ways to generate JWT in ServiceNow and signing it with ES256 algorithm
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
ways to generate JWT in ServiceNow and signing it with ES256 algorithm
2 REPLIES 2
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @veceg9
Check this - https://www.servicenow.com/community/developer-articles/generate-and-validate-jwt-authorization-toke...
Hope it will help you.
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hi @veceg9
To generate a JWT in ServiceNow, follow these steps:
- Create or obtain a Java KeyStore (JKS) certificate and upload it to your instance.
- Navigate to System OAuth > JWT Keys and create a JWT signing key, assigning it to your JKS certificate. Note: The only supported signing algorithm in ServiceNow is RSA 256; ES256 is not available.
- Add a JWT provider in System OAuth > JWT Provider, linking it to your signing key.
- Use this provider for OAuth integrations or API authentication.
Currently, ServiceNow does not support signing JWTs with the ES256 algorithm—only RSA 256 is available
