FHIRClient - v3.0.0
    Preparing search index...

    Interface OAuthSecurityExtensions

    The three security endpoints that SMART servers might declare in the conformance statement

    interface OAuthSecurityExtensions {
        authorizeUri: string;
        codeChallengeMethods: string[];
        registrationUri: string;
        tokenUri: string;
    }
    Index
    authorizeUri: string

    You must call this endpoint to ask for authorization code

    codeChallengeMethods: string[]

    Supported PKCE Code challenge methods

    registrationUri: string

    You could register new SMART client at this endpoint (if the server supports dynamic client registration)

    tokenUri: string

    You must call this endpoint to exchange your authorization code for an access token.