OAuth Providers
Logo for fusionauthFusionAuth
Obtain access tokens to FusionAuth accounts with Handshake.

How it works

With your instance deployed, redirect users to:

https://YOUR_HANDSHAKE_INSTANCE_URL/auth/HANDLER_ID/redirect

Where HANDLER_ID is either fusionauth or the value passed to the optional id argument of the Fusionauth() factory. (See Options below.)

Handshake will take each user through the FusionAuth OAuth flow and before sending them back to you, at the URL specified by the callback_uri query parameter.


Options

Modify your app/options.ts file to include the Fusionauth() handler like so:

app/options.ts
import { Fusionauth, HandshakeOptions } from "handshake";
 
const config: HandshakeOptions = {
  handlers: [
    Fusionauth({
      clientId: string,
      clientSecret: string,
    });
  ],
}
 
// ...

Adapted from next-auth.

Consult the reference to learn about HandshakeOptions.


Troubleshooting

Facing an issue making FusionAuth work? Open an issue on GitHub to get help.