So google redirects the user to your app and our react SDK handles that route and calls the backend to consume the code.
s
siddhantvarma
06/21/2022, 3:04 AM
So I'm following the same steps that are there in the Angular demo but in Vue, but my app shows a blank screen after authenticating from google with the callback URL. The redirection doesn't happen and I think even the backend isn't called to consume the code.
r
rp_st
06/21/2022, 4:06 AM
That could be an issue in how you have setup the web server that serves the vue app. Is there anything in the console logs?
s
siddhantvarma
06/21/2022, 5:49 PM
Oh I figured it out, Vue router's routes matching pattern was set to exact which is why nested routes weren't working. Thanks anyway!