Redirect_URI is auto rendered to backend URL

@vinod_mokashi,

Your application’s backend endpoint should determine the user’s destination after login. The Upstox API, upon successful authentication, redirects to the redirect_uri that you specify during app registration. Your backend server, receiving this redirection, should then guide the user to the appropriate view within your app. Consider exploring how you can transition control back to your React frontend following this backend action.

Thanks!