flutter_linkedin_api
- 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);
});
Additional Information
Libraries
- access_token_helper
- access_token_helper
- api_routes
- api_routes
- auth_error_response
- Created By Guru (guru@smarttersstudio.com) on 27/06/20 4:30 PM
- auth_error_response
- Created By Guru (guru@smarttersstudio.com) on 27/06/20 4:30 PM
- auth_success_response
- Created By Guru (guru@smarttersstudio.com) on 27/06/20 4:25 PM
- auth_success_response
- Created By Guru (guru@smarttersstudio.com) on 27/06/20 4:25 PM
- email_helper
- email_helper
- email_response
- Created By Guru (guru@smarttersstudio.com) on 28/06/20 1:17 PM
- email_response
- Created By Guru (guru@smarttersstudio.com) on 28/06/20 1:17 PM
- flutter_linkedin_api
- linked_in_login_helper
- linked_in_web_view
- Created By Guru (guru@smarttersstudio.com) on 27/06/20 3:46 PM
- linked_in_web_view
- main
- profile_error
- Created By Guru (guru@smarttersstudio.com) on 28/06/20 12:59 PM
- profile_error
- Created By Guru (guru@smarttersstudio.com) on 28/06/20 12:59 PM
- profile_helper
- profile_helper
- profile_response
- Created By Guru (guru@smarttersstudio.com) on 28/06/20 12:45 PM
- profile_response
- Created By Guru (guru@smarttersstudio.com) on 28/06/20 12:45 PM