SignIn with twitter

I want twitter to force login every time so i added force_login param

options const = { redirectTo: window.location.href, queryParams: { force_login: "true" } }
await supabaseWeb.auth.signIn({ provider: "twitter" }, options)

doesn't work even though i added it.

if you want twitter to force login every time you have to pass the force_login parameter with oauth_token when you call oauth/authorize or oauth/authenticate but supabase doesn't.
when i click on the twitter button i got this
https://xxxxxxxxx.supabase.co/auth/v1/authorize?provider=twitter&redirect_to=""&force_login=true 


this means that supabase does not add the force_login parameter after getting the oauth_token.

Any help ?
Was this page helpful?