I use VueJS as my frontend and Laravel as backend, and using your library works great after following your tutorial step-by-step but somehow, the results I get are inconsistent.
In google chrome, this callback works fine and will get the google account details I need once logged in but in firefox, my google auth's popup gets stuck and get the following error:
Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException
The GET method is not supported for this route. Supported methods: POST.
https://localhost.example.com/api/auth/google/callback?..
I use VueJS as my frontend and Laravel as backend, and using your library works great after following your tutorial step-by-step but somehow, the results I get are inconsistent.
*Route::post(api/'auth/{provider}/callback', 'YourOutController@index')->where('vue', '.');**
In google chrome, this callback works fine and will get the google account details I need once logged in but in firefox, my google auth's popup gets stuck and get the following error: Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException The GET method is not supported for this route. Supported methods: POST. https://localhost.example.com/api/auth/google/callback?..
I changed the route to GET method and also followed the guides provided in this issue as well: https://github.com/diadal/vue-social-auth/issues/2
but I still have encountered the same problems mentioned above.