Riku Rainio

Results 2 comments of Riku Rainio

@ThomasF85 Can you provide a working refresh token example? I cannot find a clean way to implement refresh token in Next.js app router.

@siinghd I used this method: ```typescript providers: [ DiscordProvider({ clientId: process.env.DISCORD_CLIENT_ID as string, clientSecret: process.env.DISCORD_CLIENT_SECRET as string, authorization: "https://discord.com/api/oauth2/authorize?scope=identify+guilds+guilds.members.read", ``` Checked the discordProvider in 5.0.0-beta.4 ![image](https://github.com/nextauthjs/next-auth/assets/76222709/e06b921e-a98d-4779-b7b1-8efd10012380) Just seems to take...