How to get JWT token

Rock Hitman 46 Reputation points
2021-11-30T01:49:49.307+00:00

the target system uses an Authorization server to authenticate clients (Souce system) and provide an Access Token to invoke services.
The source system will obtain the Access Token from Target system's Authorization server.
The Target system follows JWT profile for OAuth 2.0 Client authentication and Authorization grants for issuing Access Token.

The documents what I had mostly shows verifying the JWT, But I am mainly looking on how to get JWT

In order to do that, Source system need to provide the following

  1. URLs for signing and Encryption
    OpenId Connect well-known endpoint (OR)
    jwks and Issuer URLs
  2. Authetication
    The network exposed APIs should be secured using either signed JWT, private key jwt or Access Token .
    Target system will provide client_id to be used in the APIs
  3. Certificates
    We as source system should provide a certificate of issuing CAs for Authentication
    Private key may be stored in PEM file

How should I get this, URLs for signing and encrypt, have Authentication set, and provide certificates

C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,962 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.