Skip to content

RIot Sign On

RSOAuth & RadiantConnectRSO Record

Sorry, too lazy to write proper, so here is the record.

C#
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
public record RadiantConnectRSO(string SSID); // Supposedly all you need for authorization?

public record RSOAuth(
    string? Subject,
    string? SSID,
    string? TDID,
    string? CSID,
    string? CLID,
    string? IdToken,
    string? AccessToken,
    string? PasToken,
    string? Entitlement,
    string? Affinity,
    string? ChatAffinity,
    object? ClientConfig,
    IEnumerable<Cookie> RiotCookies
);