The id_token

The id_token can be provided either in JSON format or as a signed JWT (configurable on the CONNECT side according to the client application requirements) and includes basic user profile data that allows the authentication of a user on the client application.

The id_token can be as follows:

{ 
  "sub": "5f188124-a5cb-48de-9e07-17a60f2c2101", 
  "iss": "https://customer.scienceconnect.io", 
  "type": "registered", 
  "nonce": "4013387ef6cb75ae94687464d049dd9b", 
  "sid": "b8d484b3-2555-4041-9966-fdca228ed9c8", 
  "email": "[email protected]", 
  "email_verified": true, 
  "address": { 
    "country": " Listenbourg" 
  }, 
  "emails": [ 
    { 
      "verified": true, 
      "value": "[email protected]" 
    }, 
    { 
      "verified": true, 
      "value": "[email protected]" 
    } 
  ], 
  "aud": "client_id", 
  "user_interaction": "login", 
  "name": "John Doe", 
  "family_name": "Doe", 
  "given_name": "John", 
  "middle_name": "Michael", 
  "exp": 1669997471, 
  "iat": 1667405471 
}