MonoCloud Authentication SDK
    Preparing search index...

    Interface EndSessionParameters

    Parameters for creating the sign out URL.

    interface EndSessionParameters {
        idToken?: string;
        postLogoutRedirectUri?: string;
        state?: string;
    }
    Index

    Properties

    idToken?: string

    The ID token of the user to be used to hint the user signing out

    postLogoutRedirectUri?: string

    The URL the authorization server should redirect the user to after a successful sign out. This URL has to be registered in the client's sign out URL section.

    state?: string

    A random string to be sent to the authorization server when the postLogoutRedirectUri is set.