So I’ve got what appears to be the same problem as described here: https://stackoverflow.com/questions/51717511/vue-js-express-server-okta-deploy-to-heroku-404-on-implicit-callback
When running my Vue.js App locally I can sign in and the callback is working fine. However, when deployed to Heroku I get a 404 on the redirect.
My setup looks as follows (with client ID filled in):
Vue.use(Auth, {
issuer: 'https://dev-130356.okta.com/oauth2/default',
client_id: 'client_id_here',
redirect_uri: window.location.origin + '/implicit/callback',
scope: 'openid profile email'
})
And the configuration in Okta:
Is there anything obvious I’m missing here?
Thanks!