Add Login With Linkedin feature to your Vue 3 app.
npm install vue3-linkedin-loginThis is a Vue3 package that provides a simple way to authenticate users with LinkedIn. It uses the LinkedIn OAuth2 protocol for user authentication and the LinkedIn API to retrieve the user's profile and other information.
```
npm install --save vue3-linkedin-login
We will trigger linkedInLogin by using useLinkedIn after click on Sign in with LinkedIn button, a popup window will show up and ask for the permission. After we accepted, the pop up window will redirect to redirectUri (should be LinkedInCallback component) then notice its opener about the authorization code Linked In provides us.
`html
``
| Parameter | Value | Is Required | Default |
| ------------ | -------- | ----------- | ------------- |
| clientId | string | true | - |
| clientSecret | string | true | - |
| redirectUri | string | true | - |
| onSuccess | function | true | - |
| onError | function | true | - |
| scope | string | true | r_liteprofile |
| state | string | false | - |
> This repo is inspired by the https://github.com/nvh95/react-linkedin-login-oauth2/ repo.