flutter_linkedin 1.0.2 flutter_linkedin: ^1.0.2 copied to clipboard
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 #
- Create an Application from https://www.linkedin.com/developers/.
- Get the clientId and clientSecret.
- Register a redirectUrl ( It can be any valid url )
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);
});