public-profile-page-link-finder
v1.1.3
Published
Finds a persons public profile page. duh!
Downloads
8
Readme
public-profile-page-link-finder
Why?
Given a person's name, surname and any other [keywords]
,
We need to find a LinkedIn Public Profile Page Link.
What?
Does exactly what we need it to.
How?
Basic usage
Install the public-profile-page-link-finder
package from NPM:
npm install public-profile-page-link-finder --save
Then in your code:
var LF = require('public-profile-page-link-finder');
var keywords = ['Anita', 'Czapla','Founders'];
LF(keywords, function(err, data){
console.log(JSON.stringify(data, null, 2)); // see below for sample
})
Sample result:
{ url: 'www.google.co.uk_search?q=Anita%20Czapla%20Founders',
links:
[ 'https://uk.linkedin.com/in/anitaczapla',
'https://www.linkedin.com/pub/dir/Anita',
'https://uk.linkedin.com/in/annivaananen',
'https://www.linkedin.com/pub/lukas-siebeck/5a/87a/853?trk=pub...' ] }
Use the data.links
how ever you choose.
Any questions?
Submit an issue: https://github.com/akitten/public-profile-page-url-finder/issues