Hello everyone,
I’m integrating Box.com into my React application. When I redirect users to this URL
for Box login,
const boxAuthUrl = `https://account.box.com/api/oauth2/authorize?response_type=code&client_id=${encodeURIComponent(CLIENT_ID)}&redirect_uri=${encodeURIComponent(BOX_REDIRECT_URI)}
i’m facing an issue with some accounts. Often, when the user is redirected, they end up at a different URL.
How can I resolve this issue? Can anyone help?