Next.js Discord

Discord Forum

Next Auth Redirect

Answered
Shawty posted this in #help-forum
Open in Discord
How can I make the next-auth redirect to a url after authorization? ( discord provider )

Right now it just redirects to the home page (/)
Answered by Transvaal lion
add callback in your function, for exemple : signIn('discord', { callbackUrl: your url })
View full answer

3 Replies

Transvaal lion
add callback in your function, for exemple : signIn('discord', { callbackUrl: your url })
Answer
@Transvaal lion add callback in your function, for exemple : signIn('discord', { callbackUrl: your url })
signIn('discord', {
                                callbackUrl: "/dashboard",
                         
                            })


it just redirects back to home page
hold up i fixed it