Class Authentication.GetIdTokenRequest
Get ID token
Namespace: Unity.PSN.PS5.Auth
Syntax
public class GetIdTokenRequest : Request
Properties
ClientId
Client program's client ID
Declaration
public string ClientId { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
ClientSecret
Client program's client secret
Declaration
public string ClientSecret { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
IdToken
The obtained ID token
Declaration
public string IdToken { get; }
Property Value
| Type | Description |
|---|---|
| String |
Scope
Scope of information requested by the client program
Declaration
public string Scope { get; set; }
Property Value
| Type | Description |
|---|---|
| String |
UserId
User ID
Declaration
public int UserId { get; set; }
Property Value
| Type | Description |
|---|---|
| Int32 |
Methods
Run()
Declaration
protected override void Run()