easy_linkedin_login 2.0.2 copy "easy_linkedin_login: ^2.0.2" to clipboard
easy_linkedin_login: ^2.0.2 copied to clipboard

Library for login with LinkedIn OAuth V2 service. This library helps you to implement authorization with LinkedIn OAuth API's.

easy_linkedin_login #

Important #

  • It uses latest Linkedin Login product Sign In with LinkedIn using OpenID Connect
  • Linkedin Product Sign In with LinkedIn has been deprecated.
  • If you still want to use the deprecated product Sign In with LinkedIn, please refer to the easy_linkedin_login version 1.0.3

Steps: #

  • Create App on the LinkedIn Developer Console
  • Add product Sign In with LinkedIn using OpenID Connect in products tab
  • Add Authorized redirect URL in Auth tab
  • Get the clientId, clientSecret and redirectUrl.

Getting started. #

Create the LinkedInConfig that holds the keys.

  final config = LinkedInConfig(
    clientId: 'YOUR_CLIENT_ID',
    clientSecret: 'YOUR_CLIENT_SECRET',
    redirectUrl: 'YOUR_REDIRECT_URL',
  );

Standard Widget #

Standard LinkedIn button for login. This widget is modifiable.

  LinkedInStandardButton(
    config: config,
    destroySession: false,
    onError: (error) => log('Error: ${error.message}'),
    onGetAuthToken: (data) => log('Access token ${data.accessToken!}'),
    onGetUserProfile: (user) => log('User: ${user.name}'),
  ),

NOTE:

  • You can use mini property to use Small Linkedin Icon Button

Widget with custom widget #

  LinkedInCustomButton(
    config: config,
    destroySession: false,
    onError: (error) => log('Error: ${error.message}'),
    onGetAuthToken: (data) => log('Access token ${data.accessToken!}'),
    onGetUserProfile: (user) => log('User: ${user.name}'),
    child: Text('Click Here to Login with linkedin'),
  ),

NOTE:

  • destroySession clears the Linkedin login session if set to true

Widget with customization #

  LinkedInStandardButton(
    config: config,
    appbar: MyPreferredSizeWidget(),
    iconAssetPath: "/assets/my_custom_icon.png",
    iconWidth: 30,
    iconHeight: 30,
    destroySession: false,
    onError: (error) => log('Error: ${error.message}'),
    onGetAuthToken: (data) => log('Access token ${data.accessToken!}'),
    onGetUserProfile: (user) => log('User: ${user.name}'),
  ),

  LinkedInStandardButton(
    config: config,
    mini: true
    destroySession: false,
    onError: (error) => log('Error: ${error.message}'),
    onGetAuthToken: (data) => log('Access token ${data.accessToken!}'),
    onGetUserProfile: (user) => log('User: ${user.name}'),
  ),

  LinkedInCustomButton(
    config: config,
    appbar: MyPreferredSizeWidget(),
    destroySession: false,
    onError: (error) => log('Error: ${error.message}'),
    onGetAuthToken: (data) => log('Access token ${data.accessToken!}'),
    onGetUserProfile: (user) => log('User: ${user.name}'),
    child: Container(
      decoration: BoxDecoration(
        color: Colors.blueAccent,
        borderRadius: BorderRadius.circular(8),
      ),
      padding: EdgeInsets.symmetric(horizontal: 20, vertical: 13),
      child: Text(
        'Click Here to Login with linkedin',
        style: TextStyle(color: Colors.white),
       ),
    ),
  ),

Screenshot #

Home

5
likes
130
pub points
67%
popularity

Publisher

verified publishersujangainju.com.np

Library for login with LinkedIn OAuth V2 service. This library helps you to implement authorization with LinkedIn OAuth API's.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http, meta, rxdart, uuid, webview_flutter

More

Packages that depend on easy_linkedin_login