ENXF NET
Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
- Joined
- Nov 13, 2018
- Messages
- 25,999
- Points
- 823
Reputation:
Any chance we can have some kind of documentation on the specifications for oauth2 with xenforo especially on what parameters are being required and sent?
thats what i have right now but i had no luck getting it to work on my nextjs demo app, but i have to say i am pretty new and not an expert here.
JavaScript:
Read more
Continue reading...
thats what i have right now but i had no luck getting it to work on my nextjs demo app, but i have to say i am pretty new and not an expert here.
JavaScript:
Code:
// /app/api/auth/auth-options.ts
import type { NextAuthOptions, Session } from "next-auth";
import { JWT } from "next-auth/jwt";
declare module "next-auth" {
interface Session {...
Read more
Continue reading...