flutter_linkedin 1.0.2 copy "flutter_linkedin: ^1.0.2" to clipboard
flutter_linkedin: ^1.0.2 copied to clipboard

discontinued

Flutter Package to login and get Profile Details from linkedin

flutter_linkedin #

  • A Flutter Package to login and get Profile Details from linkedIn.

Getting Started #

Initialize LinkedInLogin class

  final String redirectUrl = 'https://smarttersstudio.com';
  final String clientId = '78el5r2y1dwp4j ';
  final String clientSecret = 'RnyXiCNz3cahNx1g ';
  
  @override
  void initState() {
    LinkedInLogin.initialize(context,
      clientId: clientId,
      clientSecret: clientSecret,
      redirectUri: redirectUrl
    );
    super.initState();
  }

Get The Token From LinkedIn

	LinkedInLogin.loginForAccessToken(
                destroySession: true,
				forceLogin : true ,
                appBar: AppBar(
                  title: Text('Demo Login Page'),
                )
         ) .then((accessToken) => print(accessToken) )
           .catchError((error){
                print(error.errorDescription);
	});

Get Your Profile #

	LinkedInLogin.getProfile(
                destroySession: true,
                forceLogin: true,
                appBar: AppBar(
                  	title: Text('Demo Login Page'),
                )
         	) .then((profile) => print(profile.toJson().toString()) )
              .catchError((error){
                	print(error.errorDescription);
	});

Get Your Email #

	LinkedInLogin.getEmail(
                destroySession: true,
                forceLogin: true,
                appBar: AppBar(
                  	title: Text('Demo Login Page'),
                )
         	) .then((email) => print(email.toJson().toString()) )
              .catchError((error){
                	print(error.errorDescription);
	});

Additional Information #

Get The Full API Documentation from here

16
likes
35
points
21
downloads

Publisher

verified publishersmarttersstudio.com

Weekly Downloads

Flutter Package to login and get Profile Details from linkedin

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation

License

MIT (license)

Dependencies

flutter, flutter_webview_plugin, http

More

Packages that depend on flutter_linkedin