Hello, I’ve followed the okta spring integration and was able to use okta properly. But following the vue guide: https://developer.okta.com/quickstart-fragments/vue/default-example/#prerequisites I couldn’t. The callback on Vue doesn’t work.
I imported vue sdk and configured on Vue.use(Auth, {config}), also added a path route that matches the redirect_uri and pointed to OktaVuePlugin.handleCallback(). When I try to access a secure page the application correctly redirects to okta login, but on login submit the browser is redirected to /host/mycallbackurl#code… and then a blank page is returned.
TLDR; The callback of vue is not working even setting:
redirect_uri: window.location.origin + ‘/implicit/callback’
{path: ‘/implicit/callback’,
component: OktaVuePlugin.handleCallback()}
Would appreciate any help