@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface TokenAudienceResult

    Result of audience validation.

    interface TokenAudienceResult {
        ok: boolean;
        reason?: string;
        actualAudience?: string | string[];
    }
    Index

    Properties

    ok: boolean
    reason?: string

    Human-readable reason when ok is false.

    actualAudience?: string | string[]

    The aud claim value actually found in the token (undefined if missing or token unparseable).