Open ludoNK64 opened 2 years ago
make sure you create this route below
{
path: '/auth/:provider/callback',
component: {
template: '<div class="auth-component"></div>'
}
},
make sure you create this route below
{ path: '/auth/:provider/callback', component: { template: '<div class="auth-component"></div>' } },
can you give an example of what's '/auth/:provider/callback' looks alike?
I also have a problem, I have separated setup for vue and laravel. A pop windows for login then redirected to specified view but pop up not closed.
/auth/:provider/callback
/auth/facebook/callback /auth/github/callback
I also have a problem, I have separated setup for vue and laravel. A pop windows for login then redirected to specified view but pop up not closed.
make sure you create this https://github.com/diadal/vue-social-auth/issues/43#issuecomment-1305131610
make sure you create this route below
{ path: '/auth/:provider/callback', component: { template: '<div class="auth-component"></div>' } },
I already applied this but no avail, will it work if I have separate project? for aravel as API and VueJS 3.??
can you share your code and for the vue3 use https://github.com/diadal/universal-social-auth
Using vue 2, I'm able to open the popup window that allows the user to connect via a social account. Unfortunately, the opened window never close, even after successful authentication. This causes the function included in the 'then()' to be never executed.