We use the universal login with organizations b2b and express openid as a client library. When a user is member of +1 organizations the organization picker shows up after login. Can we bypass the picker since we know the org id / name when initiating login process. I cant seem to find a worrking example. I am trying with
res.oidc.login({
returnTo: '/dashboard',
authorizationParams: {
response_type: 'code',
audience: 'xxx',
scope: 'openid profile email',
redirect_uri: `${baseUrl}/callback`,
org_id: 'org_xxxxxxxxxxx',
screen_hint: 'signup',
organization: 'org_xxxxxxxxxxx', //req.query?.organization,
},
}),
Eventually the addtitional parameters are not passed over to the picker - how can i auto select an organization and skip the picker?