Redirect user to sign up page #1230
-
Hi Team,
Or am I missing this in the react native sdk doc? |
Beta Was this translation helpful? Give feedback.
Answered by
subhankarmaiti
Jul 24, 2025
Replies: 1 comment
-
Hi @liuqiaowei512 you can refer in the FAQ section you can use below implementation const signup = async () => {
await authorize({
scope: ...,
audience: ...,
additionalParameters: {
screen_hint: 'signup'
}
});
// continue with signup process!
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
subhankarmaiti
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @liuqiaowei512 you can refer in the FAQ section
you can use below implementation