Add "Login with Passkeys" to your AWS Amplify app in <5 mins
Passkey auth is a more popular and secure auth method. In this tutorial, you will learn how to add Passkeys to you web app on AWS Amplify with Pangea AuthN.
1
2
3
git clone https://github.com/pangeacyber/pangea-authn-amplify-backend-demo.git && \
cd pangea-authn-amplify-backend-demo && \
npm i @pangeacyber/react-auth pangea-node-sdk
.env
config file as shown below..env
file like this:1
2
3
4
5
6
7
8
NEXT_PUBLIC_AUTHN_HOSTED_LOGIN_URL="<PANGEA_AUTH_LOGIN_URL>"
NEXT_PUBLIC_AUTHN_CLIENT_TOKEN="<PANGEA_AUTH_CLIENT_TOKEN>"
# Update if you choose something outside AWS US cluster
NEXT_PUBLIC_PANGEA_DOMAIN=aws.us.pangea.cloud
PANGEA_TOKEN="<PANGEA_TOKEN>"
# Update if you choose something outside AWS US cluster
PANGEA_DOMAIN=aws.us.pangea.cloud
_app.tsx
file with the <AuthProvider>
component that maintains authentication context and state across the application.1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import "@/styles/globals.css";
import type { AppProps } from "next/app";
import { AuthProvider } from "@pangeacyber/react-auth";
export default function App({ Component, pageProps }: AppProps) {
const hostedLoginURL = process?.env?.NEXT_PUBLIC_AUTHN_HOSTED_LOGIN_URL || "";
const authConfig = {
clientToken: process?.env?.NEXT_PUBLIC_AUTHN_CLIENT_TOKEN || "",
domain: process?.env?.NEXT_PUBLIC_PANGEA_DOMAIN || "",
};
return (
<AuthProvider loginUrl={hostedLoginURL} redirectPathname="/authenticated" config={authConfig}>
<Component {...pageProps} />
</AuthProvider>
);
}
src/pages/index.tsx
file.1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { MainComponent } from "@/components/main-component";
import { useAuth } from "@pangeacyber/react-auth";
import { useRouter } from "next/router";
import { useEffect } from "react";
export default function Home() {
const router = useRouter();
const { authenticated, user, loading, login } = useAuth();
useEffect(() => {
// Check if user authenticated
if(!loading && authenticated) {
router.push("/authenticated");
}
}, [loading, user, authenticated])
return (
<MainComponent login={login} />
);
}
http://localhost:3000/authenticated
(which is our default login success route in this app) when a user is done authenticating.http://localhost:3000/authenticated
as a redirect and save it.http://localhost:3000/authenticated
. Here, you will find a form that asks you for your favorite ice cream flavor.
1
2
amplify init
amplify push -y
1
2
3
4
5
AWS_REGION="<AWS_REGION>"
AWS_APPSYNC_GRAPHQL_ENDPOINT="<AWS_APPSYNC_GRAPHQL_ENDPOINT>"
AWS_APPSYNC_REGION="<AWS_REGION>"
AWS_APPSYNC_AUTHENTICATION_TYPE="<AUTH_TYPE>"
AWS_APPSYNC_API_KEY="<AWS_APPSYNC_API_KEY>"
src/pages/api/send-data.ts
and notice that the last exports the API handler with the withAPIAuthentication
middleware.withAPIAuthentication
middleware is consequently implemented in src/utils/authCheck
with a few handy little functions to verify the user's identity based on their session token.