Member Junction
    Preparing search index...

    The Client.init options subset we pass — just the bearer-token authProvider callback.

    interface GraphClientInitOptions {
        authProvider(done: (error: Error, accessToken: string) => void): void;
    }
    Index

    Methods

    Methods

    • The Graph auth-provider callback. The SDK invokes it for each request and expects the bearer access token (string) via the supplied done(error, token) continuation.

      Parameters

      • done: (error: Error, accessToken: string) => void

      Returns void