© 2026 Hedgehog Software, LLC
Error: This action with HTTP GET is not supported by NextAuth.js
import SteamProvider from 'next-auth-steam' import NextAuth from 'next-auth/next' import { ray } from 'node-ray'; async function handler(req,res) { return NextAuth(req, res, { providers: [ SteamProvider(req, { clientSecret: process.env.STEAM_API_KEY, callbackUrl: process.env.NEXTAUTH_URL + '/api/auth/callback', }), ] }); } export { handler as GET, handler as POST, }
"next": "^13.3.0", "next-auth": "^4.22.0", "next-auth-steam": "^0.1.5",
<Link href="/api/auth/steam" className="text-blue-400 hover:text-blue-200 font-semibold underline text-lg mt-6">Log in</Link>