Usage
auth: {
strategies: {
github: {
clientId: '...',
clientSecret: '...'
},
}
}
Anywhere in your application logic:
const $auth = useAuth()
$auth.loginWith('github')
๐ This provider is based on oauth2 scheme and supports all scheme options.
Obtaining clientId
and clientSecret
This option is REQUIRED. To obtain one, create your app in Create a new Oauth APP and use provided "Client ID" and "Client Secret".
Table of Contents