35c861b711
Co-authored-by: konrad <konrad@kola-entertainments.de>
15 lines
474 B
TypeScript
15 lines
474 B
TypeScript
import {createRandomID} from '@/helpers/randomId'
|
|
|
|
interface Provider {
|
|
name: string
|
|
key: string
|
|
authUrl: string
|
|
clientId: string
|
|
}
|
|
|
|
export const redirectToProvider = (provider: Provider, redirectUrl: string) => {
|
|
const state = createRandomID(24)
|
|
localStorage.setItem('state', state)
|
|
|
|
window.location.href = `${provider.authUrl}?client_id=${provider.clientId}&redirect_uri=${redirectUrl}${provider.key}&response_type=code&scope=openid email profile&state=${state}`
|
|
}
|