Skip to content

allohouston/meteor-accounts-linkedin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

meteor-accounts-linkedin

A meteor package for LinkedIn's login service.

Install

meteor add yellowsquare:accounts-linkedin

Configure

meteor add service-configuration

In your imports/startup/server/index.js file:

var oauth = Meteor.settings.private.oauth;
ServiceConfiguration.configurations.upsert(
    {service: oauth.serviceName},
    {
        $set: {
            clientId: oauth.clientId,
            loginStyle: oauth.loginStyle,
            secret: oauth.secret
        }
    }
);

In your configuration (settings.json) :

"private" : {
    "oauth" :
        {
            "serviceName" : "linkedin",
            "clientId"    : "",
            "secret"      : "",
            "loginStyle"  : "popup"
        }
}

License

MIT

About

A meteor package for LinkedIn's login service.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%