hapi-oauth

Hapi oauth plugin

Usage no npm install needed!

<script type="module">
  import hapiOauth from 'https://cdn.skypack.dev/hapi-oauth';
</script>

README

Hapi oauth

Usage

import * as HapiOAuth from 'hapi-oauth';

// ...

class ApiOAuthHandler extends HapiOAuth.OAuthHandler {
    public onLink(res: LinkSuccess, request: Request, reply: IReply): void {
        // Do your stuff
    }
}

server.register({
    register: HapiOAuth,
    options: {
        handler: new ApiOAuthHandler(),
        baseUrl: 'http://localhost:8080',
        requestConfig: {
            // Change request config values here, e.g. adding optional auth (for linking existing accounts for example)
            auth: { mode: 'optional', strategy: 'jwt' }
        },
        providers: [
            new HapiOAuth.MixerProvider(
                'mixerClientId',
                'mixerClientSecret',
                ['user:details:self' /* add more scopes here */]
            ),
            // Rinse and repeat for other providers.
        ]
    }
});