Nico Domino
Nico Domino
@mike818148 thanks for the interest in the project. So if I understand correctly, SailPoint is an enterprise identity/security platform? So a random developer like me wouldn't be able to get...
In the mean time, you could also add a docs page at `/docs/pages/getting-started/providers/sailpoint.mdx`. You can copy the structure of any of the other providers, like `Netlify.mdx` for example, and just...
> Hello @ndom91, > > this is correct, SailPoint Identity Secure Cloud(ISC) is an enterprise SaaS platform for identity/security solution. At the moment, random developer may not get an OAuth...
@mike818148 thanks a lot for converting this to the "just" documentation page version we talked about! Regarding your question about the environment variables - no, the environment variable auto detection...
So I'm not 100% sure about this, but google is setup as an OIDC provider which will auto-detect all the required URLs from their `.well-known` oIDC manifest, but you've hardcoded...
@INIRU can you share that next-auth error? @murilobd the `AUTH_REDIRECT_PROXY_URL` option is designed for proxying preview deploy's through your prod deploy so you can login with Google (for example) on...
@murilobd have yuo updated your callbackUrl in the Google / whatever OAUth provider dashboard? That's what tells the app where to redirect back to by default
From that it seems like your `clientId` is either incorrect (copy and paste error maybe?) or just not being picked up. In order to infer it automatically, and not have...
@murilobd the correct environment variable is `AUTH_URL`, give that a shot. The `AUTH_REDIRECT_PROXY_URL` may have avoided the initial error, but it enables a whoel different flow inside the core, it's...
> @ndom91 Yes, It's already set up and passes well to Google OAuth. The error seems to be in the CallbackRouting part. Hmm well one way or another, google is...